Skip to content

Commit

Permalink
Merge pull request #714 from jembi/fixing-navbar-text
Browse files Browse the repository at this point in the history
Updating the casing for nav items
  • Loading branch information
drizzentic authored Nov 6, 2024
2 parents 68226a5 + e0bc05e commit dab4669
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const navbarTextStyle = {
fontSize: '14px',
letterSpacing: '0.4px',
lineHeight: '24px',
textTransform: 'uppercase',
textTransform: 'capitalize',
fontWeight: '500',
fontFamily: 'Roboto',
color: alpha('#000', 0.6)
Expand Down Expand Up @@ -313,7 +313,7 @@ export default function OpenhimAppBar() {
position: 'fixed',
letterSpacing: '0.4px',
lineHeight: '24px',
textTransform: 'uppercase',
textTransform: 'capitalize',
fontWeight: '500',
color: alpha('#000', 0.6),
zIndex: 99
Expand Down Expand Up @@ -499,15 +499,15 @@ export default function OpenhimAppBar() {
? {
display: 'flex',
alignItems: 'center',
textTransform: 'none',
textTransform: 'capitalize',
fontWeight: 500,
marginRight: '20px',
color: '#388e3c'
}
: {
display: 'flex',
alignItems: 'center',
textTransform: 'none',
textTransform: 'capitalize',
fontWeight: 500,
marginRight: '20px',
color: '#00000099'
Expand Down

0 comments on commit dab4669

Please sign in to comment.