Skip to content

Commit

Permalink
fix: prevent header gird blowout
Browse files Browse the repository at this point in the history
  • Loading branch information
DavieReid committed Jul 18, 2023
1 parent 89af784 commit fd82bb9
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/components/src/TabsBase/tabsMenuButton.css.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { style } from '@vanilla-extract/css';
import { responsiveSprinkles, link, vars } from '@jpmorganchase/mosaic-theme';
import { responsiveSprinkles, link } from '@jpmorganchase/mosaic-theme';

export default {
root: style([
Expand Down
1 change: 1 addition & 0 deletions packages/layouts/src/LayoutBase/styles.css.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ export default {
root: style([
{
display: 'grid',
overflow: 'hidden',
gridTemplateColumns: '1fr',
gridTemplateAreas: `
"base-layout-header"
Expand Down
1 change: 0 additions & 1 deletion packages/site-components/src/AppHeader/styles.css.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ export default {
flexGrow: 1,
display: 'flex',
alignItems: 'center',
flexWrap: 'wrap',
justifyContent: 'space-between'
},
caption({ variant: 'caption6' }),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ export default {
]),
menuButton: style([
button({ variant: 'square' }),
style({ lineHeight: 1 }),
responsiveSprinkles({ marginLeft: ['x2', 'x2', 'x2', 'x2'] })
]),
userInfo: responsiveSprinkles({
Expand Down

0 comments on commit fd82bb9

Please sign in to comment.