WIP
This commit is contained in:
parent
5684e3d819
commit
29a0fde98c
7
.vscode/settings.json
vendored
Normal file
7
.vscode/settings.json
vendored
Normal file
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"css.format.spaceAroundSelectorSeparator": true,
|
||||
"css.format.maxPreserveNewLines": 3,
|
||||
"scss.format.maxPreserveNewLines": 3,
|
||||
"scss.format.spaceAroundSelectorSeparator": true,
|
||||
"files.insertFinalNewline": true
|
||||
}
|
|
@ -27,9 +27,10 @@ header {
|
|||
|
||||
}
|
||||
|
||||
body>footer {
|
||||
body > footer {
|
||||
padding-top: var(--spacing);
|
||||
padding-bottom: var(--spacing);
|
||||
|
||||
nav {
|
||||
ul {
|
||||
display: flex;
|
||||
|
@ -38,7 +39,7 @@ body>footer {
|
|||
}
|
||||
}
|
||||
|
||||
body>main {
|
||||
body > main {
|
||||
padding-bottom: var(--spacing);
|
||||
}
|
||||
|
||||
|
@ -90,12 +91,12 @@ body>main {
|
|||
border-radius: 0;
|
||||
}
|
||||
|
||||
&:first-child>a {
|
||||
&:first-child > a {
|
||||
border-top-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-bottom-right-radius: var(--border-radius);
|
||||
}
|
||||
|
@ -255,7 +256,6 @@ body>main {
|
|||
}
|
||||
|
||||
|
||||
|
||||
// Blog Overview: Categories list
|
||||
div.nav-aside {
|
||||
ul {
|
||||
|
|
Loading…
Reference in a new issue