set scrollbar colour

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

View file

@ -5,7 +5,7 @@
return [ return [
'name' => env('APP_NAME', 'diskfloppy.me'), 'name' => env('APP_NAME', 'diskfloppy.me'),
'version' => '2024.12.07', 'version' => '2024.12.19',
'env' => env('APP_ENV', 'production'), 'env' => env('APP_ENV', 'production'),
'debug' => (bool) env('APP_DEBUG', false), 'debug' => (bool) env('APP_DEBUG', false),
'url' => env('APP_URL', 'http://localhost'), 'url' => env('APP_URL', 'http://localhost'),

View file

@ -14,6 +14,7 @@ :root {
html { html {
height: 100%; height: 100%;
color-scheme: light; color-scheme: light;
scrollbar-color: var(--border-color) var(--background);
} }
body { body {
@ -190,6 +191,10 @@ table.form textarea {
width: 250px; width: 250px;
} }
table.form textarea {
resize: none;
}
table.form button:hover { table.form button:hover {
background-color: var(--border-color); background-color: var(--border-color);
color: var(--background); color: var(--background);