mirror of
https://github.com/Fluffy-Bean/website.git
synced 2024-12-26 17:36:12 +00:00
style: format code with Prettier
This commit fixes the style issues introduced in 565103d
according to the output
from Prettier.
Details: None
This commit is contained in:
parent
565103dda4
commit
8fd80aed1d
|
@ -5,10 +5,18 @@
|
|||
padding: 0;
|
||||
|
||||
scrollbar-color: $accent transparent;
|
||||
::-webkit-scrollbar { width: 8px }
|
||||
::-webkit-scrollbar-track { background: transparent }
|
||||
::-webkit-scrollbar-thumb { background: $accent }
|
||||
::-webkit-scrollbar-thumb:hover { background: $accent }
|
||||
::-webkit-scrollbar {
|
||||
width: 8px;
|
||||
}
|
||||
::-webkit-scrollbar-track {
|
||||
background: transparent;
|
||||
}
|
||||
::-webkit-scrollbar-thumb {
|
||||
background: $accent;
|
||||
}
|
||||
::-webkit-scrollbar-thumb:hover {
|
||||
background: $accent;
|
||||
}
|
||||
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
$dark: #312620;
|
||||
$gray: #382e28;
|
||||
$light: #f0e9e4;
|
||||
$accent: #A86338;
|
||||
$accent: #a86338;
|
||||
|
||||
$radius: 4px;
|
||||
|
||||
|
|
Loading…
Reference in a new issue