diff options
| author | Henry Jameson <me@hjkos.com> | 2024-02-13 02:09:43 +0200 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2024-02-13 02:09:43 +0200 |
| commit | bcc50844096b47c0656ed3338de222055a749fb1 (patch) | |
| tree | bf051cbc0c779438d53d60fe827732846763cef5 /src/components/nav_panel/nav_panel.vue | |
| parent | 17b25ef0e0eb261fbfd09be740a1cd8c0e3ad88b (diff) | |
add roundness, fix inputs
Diffstat (limited to 'src/components/nav_panel/nav_panel.vue')
| -rw-r--r-- | src/components/nav_panel/nav_panel.vue | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/src/components/nav_panel/nav_panel.vue b/src/components/nav_panel/nav_panel.vue index 51fa62ed..a07a8795 100644 --- a/src/components/nav_panel/nav_panel.vue +++ b/src/components/nav_panel/nav_panel.vue @@ -126,17 +126,13 @@ > li { &:first-child.menu-item { - border-top-right-radius: $fallback--panelRadius; - border-top-right-radius: var(--panelRadius, $fallback--panelRadius); - border-top-left-radius: $fallback--panelRadius; - border-top-left-radius: var(--panelRadius, $fallback--panelRadius); + border-top-right-radius: var(--roundness); + border-top-left-radius: var(--roundness); } &:last-child.menu-item { - border-bottom-right-radius: $fallback--panelRadius; - border-bottom-right-radius: var(--panelRadius, $fallback--panelRadius); - border-bottom-left-radius: $fallback--panelRadius; - border-bottom-left-radius: var(--panelRadius, $fallback--panelRadius); + border-bottom-right-radius: var(--roundness); + border-bottom-left-radius: var(--roundness); } } |
