Skip to content

Commit

Permalink
fix(select): increase apply footer button specificity (#1248)
Browse files Browse the repository at this point in the history
* fix(select): increase apply footer button specificity

* Create thick-adults-whisper.md

* Update thick-adults-whisper.md
  • Loading branch information
reme3d2y committed Jun 21, 2024
1 parent 0969c2f commit 1c42149
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/thick-adults-whisper.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@alfalab/core-components-select": patch
---

увеличена специфичность стилей для кнопок футера
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ export const Footer = ({
view='primary'
onClick={handleApply}
dataTestId={getDataTestId(dataTestId, 'apply')}
className={styles.button}
>
Применить
</ButtonDesktop>
Expand All @@ -42,6 +43,7 @@ export const Footer = ({
view='secondary'
onClick={handleClear}
dataTestId={getDataTestId(dataTestId, 'clear')}
className={styles.button}
>
Сбросить
</ButtonDesktop>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
padding: var(--gap-s);
outline: none;

& > * + * {
& > .button + .button {
margin-left: var(--gap-xs);
}
}

0 comments on commit 1c42149

Please sign in to comment.