Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
perf: replace hard coded values with tokens
Browse files Browse the repository at this point in the history
jordanjones243 committed May 29, 2024
1 parent e1b655b commit 8f0f7aa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/style.scss
Original file line number Diff line number Diff line change
@@ -14,9 +14,9 @@
:host([visible]) {
display: inline-flex;
min-width: 100%;
min-height: 60px;
min-height: calc(var(--ds-size-700, $ds-size-700) + var(--ds-size-50, $ds-size-50));
padding: var(--ds-size-200, $ds-size-200) var(--ds-size-150, $ds-size-150);
border-radius: 8px;
border-radius: var(--ds-size-100, $ds-size-100);
background-color: var(--ds-color-brand-gray-400, $ds-color-brand-gray-400);
box-shadow: var(--ds-elevation-200, $ds-elevation-200);
color: var(--ds-color-text-primary-inverse, $ds-color-text-primary-inverse);
@@ -43,7 +43,7 @@
height: var(--ds-size-400, $ds-size-400);
padding-right: 0;
padding-left: 0;
border: 2px solid transparent;
border: var(--ds-size-25, $ds-size-25) solid transparent;
margin-left: auto;
background-color: transparent;
color: var(--ds-color-text-primary-inverse, $ds-color-text-primary-inverse);

0 comments on commit 8f0f7aa

Please sign in to comment.