Poprawki kompatybilności

This commit is contained in:
2022-07-21 15:11:57 +02:00
parent e5e755fa19
commit 459c23df17
7 changed files with 117 additions and 36 deletions
+27
View File
@@ -8,8 +8,10 @@ html {
padding: 0;
margin: 0;
min-height: 100vh;
background-color: $bgCol;
font-family: 'Libre Franklin', sans-serif;
font-weight: 500;
}
button {
@@ -43,3 +45,28 @@ button {
color: $accentCol;
}
}
select {
border: 2px solid black;
background: none;
padding: 0.1em 0;
border-radius: 0.3em;
text-align: center;
}
// Global scrollbar
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
background: #333;
}
::-webkit-scrollbar-thumb {
background: #888;
}
::-webkit-scrollbar-thumb:hover {
background: #555;
}