diff options
Diffstat (limited to 'src/components/Basic')
-rw-r--r-- | src/components/Basic/Bar.svelte | 6 | ||||
-rw-r--r-- | src/components/Basic/Chip.svelte | 2 |
2 files changed, 2 insertions, 6 deletions
diff --git a/src/components/Basic/Bar.svelte b/src/components/Basic/Bar.svelte index 1b4584d..5715b41 100644 --- a/src/components/Basic/Bar.svelte +++ b/src/components/Basic/Bar.svelte @@ -31,11 +31,7 @@ width: 100%; right: calc(100% - var(--progress)); overflow: hidden; - background: linear-gradient(90deg, - rgba(255, 42,228,1) 0%, - rgba(164,255,177,1) 60%, - rgba(214,255,241,1) 85%, - rgba(247,250,252,1) 100%); + background: var(--gradient-2, green); border-radius: 15px; } diff --git a/src/components/Basic/Chip.svelte b/src/components/Basic/Chip.svelte index b8697ae..19fa36c 100644 --- a/src/components/Basic/Chip.svelte +++ b/src/components/Basic/Chip.svelte @@ -3,7 +3,7 @@ padding: 3px 5px; box-sizing: border-box; border-radius: 20px; - background: linear-gradient(90deg, #84fab0, #8fd3f4 51%, #84fab0) 100% / 200%; + background: var(--gradient-1, green); color: white; } </style> |