diff options
| author | Wolfboy248 <georgejvindkarlsen@gmail.com> | 2024-11-25 09:20:01 +0100 |
|---|---|---|
| committer | Wolfboy248 <georgejvindkarlsen@gmail.com> | 2024-11-25 09:20:01 +0100 |
| commit | 207a2540101b2f216bde94ae53286d2e52f044e3 (patch) | |
| tree | 0d36c7d3ea8b87f654aa47384d16f1f8f96a0157 /frontend/src/css/Input.module.css | |
| parent | feat/rankings: optimize Steam ID comparison (#236) (diff) | |
| download | lphub-207a2540101b2f216bde94ae53286d2e52f044e3.tar.gz lphub-207a2540101b2f216bde94ae53286d2e52f044e3.tar.bz2 lphub-207a2540101b2f216bde94ae53286d2e52f044e3.zip | |
frontend: begin port to css modules, sidebar refactor
Diffstat (limited to 'frontend/src/css/Input.module.css')
| -rw-r--r-- | frontend/src/css/Input.module.css | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/frontend/src/css/Input.module.css b/frontend/src/css/Input.module.css new file mode 100644 index 0000000..c216f73 --- /dev/null +++ b/frontend/src/css/Input.module.css | |||
| @@ -0,0 +1,15 @@ | |||
| 1 | .sidebar { | ||
| 2 | background-color: #161723; | ||
| 3 | color: var(--text-color); | ||
| 4 | border: none; | ||
| 5 | border-radius: 300px; | ||
| 6 | font-family: BarlowSemiCondensed-Regular; | ||
| 7 | padding: 8px; | ||
| 8 | width: calc(100% - 16px); | ||
| 9 | outline: none; | ||
| 10 | font-size: 18px; | ||
| 11 | } | ||
| 12 | |||
| 13 | .sidebar::placehoder { | ||
| 14 | color: #2b2e46; | ||
| 15 | } | ||