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 [
|
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'),
|
||||||
|
|
|
@ -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);
|
||||||
|
|
Loading…
Reference in a new issue