Fix the color of gang selection button:
This commit is contained in:
@@ -60,6 +60,10 @@
|
||||
margin-left: 2em;
|
||||
}
|
||||
|
||||
.gang-select-button {
|
||||
background-color: #ee6e73;
|
||||
}
|
||||
|
||||
.overflow {
|
||||
width: 120px;
|
||||
overflow: hidden;
|
||||
@@ -73,4 +77,4 @@
|
||||
|
||||
.no-overflow {
|
||||
white-space: nowrap;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -110,9 +110,9 @@ const App = (props) => {
|
||||
coverTrigger: false,
|
||||
hover: false,
|
||||
inDuration: 150,
|
||||
outDuration: 250
|
||||
outDuration: 250,
|
||||
}}
|
||||
trigger={<Button className="bump"><div className="overflow">{gangName()}</div></Button>}
|
||||
trigger={<Button className="bump gang-select-button"><div className="overflow">{gangName()}</div></Button>}
|
||||
>
|
||||
{gangs.map(gang => <a key={`gang-${gang.id}`} onClick={() => setSelectedGang(gang)}>{gang.name}</a>)}
|
||||
</Dropdown>
|
||||
|
||||
Reference in New Issue
Block a user