Skip to content

Commit 2bdb85c

Browse files
committed
fix: tag line is overflowing under actions.
sec: npm audit
1 parent a040566 commit 2bdb85c

File tree

4 files changed

+503
-180
lines changed

4 files changed

+503
-180
lines changed

components/ActionBar/ActionBar.styled.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ import { breakpoint, breakpointMax } from 'components/utils/styles/breakpoints'
33
import { calcRem } from 'components/utils/styles/calcRem'
44

55
export const StyledActionBarContainer = styled('div')(({ theme }) => ({
6-
display: 'grid',
7-
gridTemplateColumns: '1fr',
6+
display: 'flex',
7+
justifyContent: 'center',
88
alignItems: 'center',
99
backgroundColor: theme.colors.grey100,
1010
borderBottom: `1px solid ${theme.colors.grey300}`,
@@ -15,6 +15,7 @@ export const StyledActionBarContainer = styled('div')(({ theme }) => ({
1515
gridColumn: 1,
1616
gridRow: 1,
1717
marginLeft: calcRem(theme.metrics.xl),
18+
marginRight: calcRem(theme.metrics.xl),
1819

1920
[breakpoint('lg')]: {
2021
display: 'block',

0 commit comments

Comments
 (0)