fix(ui): don't resize navbar on hover

This commit is contained in:
Łukasz Mierzwa
2022-02-10 12:00:56 +00:00
committed by Łukasz Mierzwa
parent 41e659be46
commit 22e416dd0b
2 changed files with 3 additions and 3 deletions

View File

@@ -30,7 +30,7 @@ const PauseButton: FC<{ alertStore: AlertStore }> = ({ alertStore }) => {
<FontAwesomeIcon
className="cursor-pointer text-muted components-fetcher-icon mx-2"
icon={faPause}
size="lg"
fixedWidth
onClick={alertStore.status.resume}
/>
</CSSTransition>
@@ -51,7 +51,7 @@ const PlayButton: FC<{ alertStore: AlertStore }> = ({ alertStore }) => {
<FontAwesomeIcon
className="cursor-pointer text-muted components-fetcher-icon mx-2"
icon={faPlay}
size="lg"
fixedWidth
onClick={alertStore.status.pause}
/>
</CSSTransition>

View File

@@ -14,7 +14,7 @@
}
& .navbar-brand {
min-width: 2.5rem;
min-width: 2.6rem;
}
& .components-navbar-button {