update saturation
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Michael Zhang 2024-09-14 23:40:35 -05:00
parent 126f3357bb
commit 9d073a0be6
3 changed files with 13 additions and 7 deletions

View file

@ -28,7 +28,7 @@ import portrait from "../assets/self.png";
<div class="bio">
<ShortBio />
<a href="/about">More &raquo;</a>
<a href="/about/">More &raquo;</a>
</div>
</div>
</nav>

View file

@ -43,7 +43,7 @@
@media (prefers-color-scheme: dark) {
$backgroundColor: #202030;
$textColor: #cdcdcd;
$linkColor: lightskyblue;
$linkColor: hsl(216, 82%, 75%);
$linkHoverColor: #202749;
:root {

View file

@ -77,6 +77,10 @@ small {
color: var(--small-text-color);
}
ul li {
margin-bottom: 6px;
}
// Letter spacing
body {
@ -116,6 +120,7 @@ pre > code {
@media screen and (max-width: variables.$breakpoint) {
.flex-wrapper {
flex-direction: column;
.container {
padding: 5px 20px;
}
@ -125,6 +130,7 @@ pre > code {
@media screen and (min-width: variables.$breakpoint) {
.flex-wrapper {
flex-direction: row;
.container {
padding: 32px 40px 5px 40px;
}