diff options
author | Akash Keshav <112591754+domesticchores@users.noreply.github.com> | 2025-04-05 22:00:00 -0400 |
---|---|---|
committer | Akash Keshav <112591754+domesticchores@users.noreply.github.com> | 2025-04-05 22:00:00 -0400 |
commit | 1ac878b4aaa19ab889c7a98b7dab6acd57c778b3 (patch) | |
tree | e167944a8fd19c6df82fb9153887edf8780129a0 /ufund-ui/src/styles.css | |
parent | ac6fa949a754778f268fb91f0b32464c153191ef (diff) | |
download | JellySolutions-1ac878b4aaa19ab889c7a98b7dab6acd57c778b3.tar.gz JellySolutions-1ac878b4aaa19ab889c7a98b7dab6acd57c778b3.tar.bz2 JellySolutions-1ac878b4aaa19ab889c7a98b7dab6acd57c778b3.zip |
finish styling basket and list; add persistent theme via localStorage. -ak
Diffstat (limited to '')
-rw-r--r-- | ufund-ui/src/styles.css | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/ufund-ui/src/styles.css b/ufund-ui/src/styles.css index 9fce47d..09e354c 100644 --- a/ufund-ui/src/styles.css +++ b/ufund-ui/src/styles.css @@ -65,7 +65,7 @@ button, input[type=button], input[type=reset], input[type=submit], .button { border-radius: 9999px; border-style: none; font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; - background-color: var(--background-color); + background-color: var(--tertiary-color); display: flex; gap: 5px; text-align: center; @@ -91,6 +91,14 @@ button, input[type=button], input[type=reset], input[type=submit], .button { font-family: 'Material Symbols Outlined' } +.sort-scheme { + background-color: var(--background-color); + border-style: solid; + border-color: var(--tertiary-color); + border-radius: 5px; + border-width: 1px; +} + h1 { font-size: 40px; } |