Skip to content

Commit

Permalink
update: CSS to make grid only on home page
Browse files Browse the repository at this point in the history
  • Loading branch information
joshbruce committed Feb 23, 2024
1 parent 6d84b85 commit 59161c5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions site-root/public/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -166,12 +166,12 @@ footer > p {
}

article {
display: grid;
column-gap: 2rem;
min-height: 100vh;
}

article[is="home"] {
display: grid;
column-gap: 2rem;
min-height: 100vh;
grid-template-columns: auto auto auto;
}

Expand Down
2 changes: 1 addition & 1 deletion site-root/public/head.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@
<meta name="twitter:image" content="<?php print($poster); ?>">

<!-- Styles w/ query cache break -->
<link type="text/css" rel="stylesheet" href="/css/main.css?v=1.0.0">
<link type="text/css" rel="stylesheet" href="/css/main.css?v=1.0.1">
</head>
<body>

0 comments on commit 59161c5

Please sign in to comment.