Skip to content

Commit

Permalink
fix breadcrumb icon style
Browse files Browse the repository at this point in the history
  • Loading branch information
sstraatemans committed Nov 6, 2024
1 parent bad725f commit 13e1900
Showing 1 changed file with 15 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { atoms, style, token } from '../../styles';
import { atoms, globalStyle, style, token } from '../../styles';

export const containerClass = style([
atoms({
Expand Down Expand Up @@ -55,9 +55,18 @@ export const linkClass = style({
},
});

export const navClass = style({
display: 'flex',
justifyContent: 'center',
alignItems: 'center',
width: 'max-content',
export const navClass = style([
atoms({
display: 'flex',
justifyContent: 'center',
alignItems: 'center',
}),
{
width: 'max-content',
},
]);

globalStyle(`${navClass} svg`, {
width: '20px',
color: token('color.text.gray.default'),
});

0 comments on commit 13e1900

Please sign in to comment.