This commit is contained in:
parent
126f3357bb
commit
9d073a0be6
3 changed files with 13 additions and 7 deletions
|
@ -28,7 +28,7 @@ import portrait from "../assets/self.png";
|
|||
|
||||
<div class="bio">
|
||||
<ShortBio />
|
||||
<a href="/about">More »</a>
|
||||
<a href="/about/">More »</a>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
|
|
@ -43,7 +43,7 @@
|
|||
@media (prefers-color-scheme: dark) {
|
||||
$backgroundColor: #202030;
|
||||
$textColor: #cdcdcd;
|
||||
$linkColor: lightskyblue;
|
||||
$linkColor: hsl(216, 82%, 75%);
|
||||
$linkHoverColor: #202749;
|
||||
|
||||
:root {
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue