set scrollbar colour

This commit is contained in:
floppydiskette 2024-12-19 20:26:36 +00:00
parent 01267479c1
commit 48d3ad22d3
Signed by: fwoppydwisk
SSH key fingerprint: SHA256:Hqn452XQ1ETzUt/FthJu6+OFkS4NBxCv5VQSEvuk7CE
2 changed files with 6 additions and 1 deletions

View file

@ -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'),

View file

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