feat(native): Improved layout in elk-native (#1359)

This commit is contained in:
Piotrek Tomczewski 2023-01-21 15:55:20 +01:00 committed by GitHub
parent adbe31d523
commit 1cf123b62b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 60 additions and 34 deletions

25
styles/scrollbars.css Normal file
View file

@ -0,0 +1,25 @@
* {
scrollbar-color: #8885 var(--c-border);
}
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar:horizontal {
height: 10px;
}
::-webkit-scrollbar-track {
background: var(--c-border);
border-radius: 1px;
}
::-webkit-scrollbar-thumb {
background: #8885;
border-radius: 1px;
}
::-webkit-scrollbar-thumb:hover {
background: #8886;
}