mirror of https://github.com/wg-easy/wg-easy
Browse Source
- Add global color transition class - Remove individual transition classes - Pause chart update while transition to prevent freezes - Change chart colors with css invertpull/937/head
13 changed files with 42 additions and 31 deletions
@ -1,3 +1,13 @@ |
|||||
@tailwind base; |
@tailwind base; |
||||
@tailwind components; |
@tailwind components; |
||||
@tailwind utilities; |
@tailwind utilities; |
||||
|
|
||||
|
@layer utilities { |
||||
|
html * { |
||||
|
@apply transition-colors ease-linear duration-200; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
html.dark .vue-apexcharts { |
||||
|
filter: invert(1); |
||||
|
} |
||||
Loading…
Reference in new issue