Skip to content

Commit

Permalink
Updated index.css styles to use tailwind classes
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeeGrigg committed Jul 3, 2024
1 parent 6af13e5 commit 374fd4a
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions assets/css/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -59,32 +59,29 @@ body {
/* Post */

.post-content > * {
grid-column-start: 3;
grid-column-end: 4;
@apply col-start-3 col-end-4;
}

/* Ghost Overrides */

.kg-width-wide {
grid-column-start: 2;
grid-column-end: 5;
@apply col-start-2 col-end-5;
}

.kg-width-full {
grid-column-start: 1;
grid-column-end: 6;
@apply col-start-1 col-end-6;
}

.kg-gallery-image {
cursor: pointer;
@apply cursor-pointer;
}

.kg-bookmark-icon {
margin: 0;
@apply m-0;
}

.kg-bookmark-thumbnail > img {
margin: 0;
@apply m-0;
}

.kg-embed-card {
Expand Down

0 comments on commit 374fd4a

Please sign in to comment.