mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-11 21:27:05 +00:00
size fixed in the vertical nav bar
This commit is contained in:
parent
b23177ee7e
commit
5b66cd17d5
2 changed files with 6 additions and 1 deletions
|
|
@ -12,7 +12,7 @@ const VerticalNavBar = React.memo(({ className, route, tabs }) => {
|
|||
tabs.map((tab, index) => (
|
||||
<NavTabButton
|
||||
key={index}
|
||||
direction={'vertical'}
|
||||
className={styles['nav-tab-button']}
|
||||
selected={tab.route === route}
|
||||
href={tab.href}
|
||||
icon={tab.icon}
|
||||
|
|
|
|||
|
|
@ -8,4 +8,9 @@
|
|||
&::-webkit-scrollbar {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.nav-tab-button {
|
||||
width: var(--vertical-nav-bar-size);
|
||||
height: var(--vertical-nav-bar-size);
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue