This commit is contained in:
jtbx 2023-11-03 22:18:59 +01:00
parent 5684e3d819
commit 29a0fde98c
2 changed files with 12 additions and 5 deletions

7
.vscode/settings.json vendored Normal file
View file

@ -0,0 +1,7 @@
{
"css.format.spaceAroundSelectorSeparator": true,
"css.format.maxPreserveNewLines": 3,
"scss.format.maxPreserveNewLines": 3,
"scss.format.spaceAroundSelectorSeparator": true,
"files.insertFinalNewline": true
}

View file

@ -27,9 +27,10 @@ header {
} }
body>footer { body > footer {
padding-top: var(--spacing); padding-top: var(--spacing);
padding-bottom: var(--spacing); padding-bottom: var(--spacing);
nav { nav {
ul { ul {
display: flex; display: flex;
@ -38,7 +39,7 @@ body>footer {
} }
} }
body>main { body > main {
padding-bottom: var(--spacing); padding-bottom: var(--spacing);
} }
@ -90,12 +91,12 @@ body>main {
border-radius: 0; border-radius: 0;
} }
&:first-child>a { &:first-child > a {
border-top-left-radius: var(--border-radius); border-top-left-radius: var(--border-radius);
border-bottom-left-radius: var(--border-radius); border-bottom-left-radius: var(--border-radius);
} }
&:last-child>a { &:last-child > a {
border-top-right-radius: var(--border-radius); border-top-right-radius: var(--border-radius);
border-bottom-right-radius: var(--border-radius); border-bottom-right-radius: var(--border-radius);
} }
@ -255,7 +256,6 @@ body>main {
} }
// Blog Overview: Categories list // Blog Overview: Categories list
div.nav-aside { div.nav-aside {
ul { ul {