set scrollbar colour
This commit is contained in:
parent
01267479c1
commit
48d3ad22d3
2 changed files with 6 additions and 1 deletions
|
@ -5,7 +5,7 @@
|
|||
|
||||
return [
|
||||
'name' => env('APP_NAME', 'diskfloppy.me'),
|
||||
'version' => '2024.12.07',
|
||||
'version' => '2024.12.19',
|
||||
'env' => env('APP_ENV', 'production'),
|
||||
'debug' => (bool) env('APP_DEBUG', false),
|
||||
'url' => env('APP_URL', 'http://localhost'),
|
||||
|
|
|
@ -14,6 +14,7 @@ :root {
|
|||
html {
|
||||
height: 100%;
|
||||
color-scheme: light;
|
||||
scrollbar-color: var(--border-color) var(--background);
|
||||
}
|
||||
|
||||
body {
|
||||
|
@ -190,6 +191,10 @@ table.form textarea {
|
|||
width: 250px;
|
||||
}
|
||||
|
||||
table.form textarea {
|
||||
resize: none;
|
||||
}
|
||||
|
||||
table.form button:hover {
|
||||
background-color: var(--border-color);
|
||||
color: var(--background);
|
||||
|
|
Loading…
Reference in a new issue