Skip to content

Commit

Permalink
feat(tooltip): remove css variables
Browse files Browse the repository at this point in the history
  • Loading branch information
Barsnes committed Sep 6, 2024
1 parent 5efdf2e commit 35d53a1
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions packages/css/tooltip.css
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
.ds-tooltip {
--dsc-tooltip-background: var(--ds-color-neutral-text-default);
--dsc-tooltip-color: var(--ds-color-neutral-background-default);
--dsc-tooltip-padding: var(--ds-spacing-1) var(--ds-spacing-2);
--dsc-tooltip-border-radius: var(--ds-border-radius-md);

background: var(--dsc-tooltip-background);
padding: var(--dsc-tooltip-padding);
color: var(--dsc-tooltip-color);
border-radius: var(--dsc-tooltip-border-radius);
padding: var(--ds-spacing-1) var(--ds-spacing-2);
color: var(--ds-color-neutral-background-default);
border-radius: var(--ds-border-radius-md);
}

.ds-tooltip__arrow {
Expand Down

0 comments on commit 35d53a1

Please sign in to comment.