Skip to content

Commit

Permalink
fix(legacy): invalid css variable
Browse files Browse the repository at this point in the history
  • Loading branch information
splincode committed Aug 21, 2024
1 parent ec87062 commit 9b0db01
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions projects/legacy/components/tag/tag.style.less
Original file line number Diff line number Diff line change
Expand Up @@ -73,12 +73,12 @@
}

:host-context([tuiTheme='dark']) & {
background-color: var(--tui-status-negative-pale-night);
background-color: var(--tui-status-negative-pale);
color: var(--tui-text-primary);

&._hoverable:hover,
&._hoverable:active {
background-color: var(--tui-status-negative-pale-night-hover);
background-color: var(--tui-status-negative-pale-hover);
}
}
}
Expand All @@ -93,12 +93,12 @@
}

:host-context([tuiTheme='dark']) & {
background-color: var(--tui-status-positive-pale-night);
background-color: var(--tui-status-positive-pale);
color: var(--tui-text-primary);

&._hoverable:hover,
&._hoverable:active {
background-color: var(--tui-status-positive-pale-night-hover);
background-color: var(--tui-status-positive-pale-hover);
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion projects/legacy/components/textarea/textarea.style.less
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@
}

&__extra {
background-color: var(--tui-status-negative-pale-night);
background-color: var(--tui-status-negative-pale);
}
}

Expand Down

0 comments on commit 9b0db01

Please sign in to comment.