1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-09-15 05:45:33 -04:00

couple more adjustments

This commit is contained in:
2021-12-31 20:24:05 -05:00
parent 854b9da5e2
commit 76d494cd32
6 changed files with 21 additions and 5 deletions

View File

@@ -57,3 +57,10 @@
background-color: var(--light); background-color: var(--light);
} }
} }
@media screen and (max-width: 768px) {
.content {
font-size: 0.925em;
line-height: 1.85;
}
}

View File

@@ -66,7 +66,7 @@
} }
p { p {
font-size: 0.925em; font-size: 0.95em;
} }
} }
} }

View File

@@ -48,6 +48,7 @@
// stack columns on left instead of flexboxing across // stack columns on left instead of flexboxing across
.row { .row {
font-size: 0.8em;
display: block; display: block;
} }
} }

View File

@@ -41,12 +41,15 @@
@media screen and (max-width: 768px) { @media screen and (max-width: 768px) {
.menu { .menu {
max-width: 360px; max-width: 320px;
margin-left: 20px;
justify-content: space-between; justify-content: space-between;
flex-grow: 1; flex-grow: 1;
} }
.item { .item {
margin-left: 0;
.icon { .icon {
width: 1.8em; width: 1.8em;
height: 1.8em; height: 1.8em;
@@ -57,4 +60,8 @@
display: none; display: none;
} }
} }
.theme_toggle {
margin-left: -0.3em;
}
} }

View File

@@ -1,6 +1,6 @@
.card { .card {
width: 100%; width: 100%;
padding: 1.2em; padding: 1.2em 1.2em 0.8em;
border: 1px solid; border: 1px solid;
border-radius: 0.5em; border-radius: 0.5em;
font-size: 0.85em; font-size: 0.85em;
@@ -13,7 +13,7 @@
} }
.description { .description {
margin: 0.7em 0; margin: 0.7em 0 0.5em;
line-height: 1.7; line-height: 1.7;
} }
@@ -25,6 +25,7 @@
.meta_item { .meta_item {
margin-right: 1.5em; margin-right: 1.5em;
font-size: 0.875em; font-size: 0.875em;
line-height: 2;
color: var(--medium); color: var(--medium);
a { a {

View File

@@ -37,7 +37,7 @@ export default function Projects({ repos }) {
div .repo_card { div .repo_card {
flex-grow: 1; flex-grow: 1;
margin: 0.5em; margin: 0.5em;
width: 400px; width: 370px;
} }
`}</style> `}</style>
</div> </div>