Skip to content

Commit

Permalink
style: tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
loks0n committed Sep 1, 2023
1 parent 2fce47e commit 2380aee
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
2 changes: 2 additions & 0 deletions src/lib/components/Footer.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,12 @@
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
}
ul {
display: flex;
list-style: none;
gap: 1em;
flex-wrap: wrap;
}
</style>
12 changes: 11 additions & 1 deletion src/lib/components/Nav.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,21 @@
<style>
nav {
display: flex;
justify-content: space-between;
flex-direction: column;
justify-content: center;
align-items: center;
font-weight: 500;
font-size: 1.1em;
}
@media (min-width: 450px) {
nav {
justify-content: space-between;
flex-direction: row;
}
}
ul {
display: flex;
list-style: none;
Expand Down
2 changes: 1 addition & 1 deletion src/routes/+layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
.container {
display: flex;
flex-direction: column;
max-width: 28rem;
width: min(100%, 30rem);
}
.content {
Expand Down

0 comments on commit 2380aee

Please sign in to comment.