Skip to content

Commit

Permalink
feat(navbar): increase size and remove shadow to match material 3
Browse files Browse the repository at this point in the history
  • Loading branch information
nolimits4web committed Aug 5, 2022
1 parent 460d714 commit d9e7f42
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/shared/classes/NavbarClasses.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,15 +43,15 @@ export const NavbarClasses = (props, colors, classes) => {
hairlines && 'hairline-b',
translucent && 'translucent'
),
material: `shadow-md ${colors.bgMaterial}`,
material: `${colors.bgMaterial}`,
},
subnavbar: {
common: cls(
'relative flex items-center',
subnavbarClassName || subnavbarClass
),
ios: 'h-11 pl-2-safe pr-2-safe',
material: 'h-12 pl-4-safe pr-4-safe',
material: 'h-16 pl-4-safe pr-4-safe',
},
inner: {
common: cls(
Expand All @@ -62,7 +62,7 @@ export const NavbarClasses = (props, colors, classes) => {
'pl-2-safe pr-2-safe h-11',
!left && right ? 'justify-end' : 'justify-between'
),
material: 'justify-start h-14 lg:h-16 pl-safe pr-safe',
material: 'justify-start h-16 pl-safe pr-safe',
},
left: {
common: cls(
Expand Down

0 comments on commit d9e7f42

Please sign in to comment.