Minor footer styling
This commit is contained in:
@@ -9,5 +9,6 @@ const today = new Date();
|
||||
footer {
|
||||
padding: 25px;
|
||||
text-align: center;
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
</style>
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
const { tags, all } = Astro.props;
|
||||
---
|
||||
|
||||
{all && <h3>View posts by tag</h3>}
|
||||
{all && <h3 class="tag-title">View posts by tag</h3>}
|
||||
<div class=`${all && "tags"}`>
|
||||
{
|
||||
tags &&
|
||||
|
||||
@@ -58,6 +58,11 @@ body.dark-mode nav {
|
||||
background: var(--transblack);
|
||||
}
|
||||
|
||||
.tag-title {
|
||||
font-weight: 400;
|
||||
color: var(--black);
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: dark) {
|
||||
::selection {
|
||||
background-color: #0f0f0f;
|
||||
@@ -90,6 +95,9 @@ body.dark-mode nav {
|
||||
body .tag {
|
||||
color: var(--gray);
|
||||
}
|
||||
.tag-title {
|
||||
color: var(--white);
|
||||
}
|
||||
}
|
||||
|
||||
h2,
|
||||
|
||||
Reference in New Issue
Block a user