0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-28 02:42:39 +00:00

Remove text transform from username

Fixes #2731
This commit is contained in:
Michiel De Mey
2023-03-21 16:08:58 +01:00
parent 98ae938b3d
commit a52ec1c330
2 changed files with 4 additions and 1 deletions

View File

@@ -63,7 +63,7 @@ const Account = createClass({
if(global.account){
return <Nav.dropdown>
<Nav.item
className='account'
className='account username'
color='orange'
icon='fas fa-user'
>

View File

@@ -187,4 +187,7 @@
.account.navItem{
min-width: 100px;
}
.account.username.navItem{
text-transform: none;
}
}