Skip to content

Commit

Permalink
BUGFIX: Prevent override of height for icons (#3914)
Browse files Browse the repository at this point in the history
  • Loading branch information
markusguenther authored Feb 6, 2025
1 parent 9d38a58 commit 9ec3432
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,14 @@
}
}

/*
Prevent that the height is defined by neos-svg-inline--fa when it is on the same level
like the selectBoxHeaderWithSearchInput__icon
*/
:global(.neos-svg-inline--fa).selectBoxHeaderWithSearchInput__icon {
height: var(--spacing-GoldenUnit);
}

.selectBoxHeaderWithSearchInput__icon {
composes: reset from '../reset.module.css';
height: var(--spacing-GoldenUnit);
Expand Down

0 comments on commit 9ec3432

Please sign in to comment.