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:
deepsource-autofix[bot] 2024-05-27 18:02:27 +00:00 committed by GitHub
parent 565103dda4
commit 8fd80aed1d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 13 additions and 5 deletions

View file

@ -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;
}

View file

@ -1,7 +1,7 @@
$dark: #312620;
$gray: #382e28;
$light: #f0e9e4;
$accent: #A86338;
$accent: #a86338;
$radius: 4px;