Skip to content

Commit

Permalink
Made colors more pronounced on animation
Browse files Browse the repository at this point in the history
  • Loading branch information
dbrewster committed Aug 9, 2024
1 parent 1928616 commit 011bb2d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions webui/apps/docs/src/components/widgets/GridLines.css
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@
@keyframes intro_width {
0% {
opacity: 1;
background: linear-gradient(to right, var(--aw-color-primary), var(--aw-color-primary) 50%, transparent 0, transparent);
background: var(--aw-color-primary);
background-size: var(--line-gap) var(--line-width);
}
100% {
Expand All @@ -117,7 +117,7 @@
@keyframes intro_height {
0% {
opacity: 1;
background: linear-gradient(180deg, var(--aw-color-accent), var(--line-color) 50%, transparent 0, transparent);
background: var(--aw-color-accent);
background-size: var(--line-width) var(--line-gap);
}
100% {
Expand All @@ -131,7 +131,7 @@
@keyframes intro_height_auto {
0% {
opacity: 1;
background: linear-gradient(180deg, var(--aw-color-accent), var(--line-color) 50%, transparent 0, transparent);
background: var(--aw-color-accent);
background-size: var(--line-width) var(--line-gap);
}
100% {
Expand Down

0 comments on commit 011bb2d

Please sign in to comment.