diff options
Diffstat (limited to 'frontend/src/components/Sidebar/Sidebar.module.css')
| -rw-r--r-- | frontend/src/components/Sidebar/Sidebar.module.css | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/frontend/src/components/Sidebar/Sidebar.module.css b/frontend/src/components/Sidebar/Sidebar.module.css new file mode 100644 index 0000000..8079676 --- /dev/null +++ b/frontend/src/components/Sidebar/Sidebar.module.css | |||
| @@ -0,0 +1,23 @@ | |||
| 1 | .button { | ||
| 2 | display: flex; | ||
| 3 | width: 100%; | ||
| 4 | cursor: pointer; | ||
| 5 | align-items: center; | ||
| 6 | border-radius: 2000px; | ||
| 7 | transition: all 0.2s ease; | ||
| 8 | padding: 4px 0px; | ||
| 9 | } | ||
| 10 | |||
| 11 | .button:hover { | ||
| 12 | background-color: var(--color-panel); | ||
| 13 | } | ||
| 14 | |||
| 15 | .button>img { | ||
| 16 | padding: 0px 8px; | ||
| 17 | height: 28px; | ||
| 18 | } | ||
| 19 | |||
| 20 | button>span { | ||
| 21 | font-size: 22px; | ||
| 22 | font-family: var(--font-barlow-semicondensed-regular); | ||
| 23 | } \ No newline at end of file | ||