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/shadow_control/shadow_control.vue | |
| parent | 17b25ef0e0eb261fbfd09be740a1cd8c0e3ad88b (diff) | |
add roundness, fix inputs
Diffstat (limited to 'src/components/shadow_control/shadow_control.vue')
| -rw-r--r-- | src/components/shadow_control/shadow_control.vue | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/components/shadow_control/shadow_control.vue b/src/components/shadow_control/shadow_control.vue index ed2283a5..4fefaee1 100644 --- a/src/components/shadow_control/shadow_control.vue +++ b/src/components/shadow_control/shadow_control.vue @@ -293,16 +293,14 @@ linear-gradient(-45deg, transparent 75%, #666 75%); background-size: 20px 20px; background-position: 0 0, 0 10px, 10px -10px, -10px 0; - border-radius: $fallback--inputRadius; - border-radius: var(--inputRadius, $fallback--inputRadius); + border-radius: var(--roundness); .preview-block { width: 33%; height: 33%; background-color: $fallback--bg; background-color: var(--bg, $fallback--bg); - border-radius: $fallback--panelRadius; - border-radius: var(--panelRadius, $fallback--panelRadius); + border-radius: var(--roundness); } } } |
