mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-04-18 12:52:52 +00:00
nav bar button container classname changed
This commit is contained in:
parent
96e59928af
commit
55aa39d70c
2 changed files with 2 additions and 2 deletions
|
|
@ -18,7 +18,7 @@ const NavBarButton = React.memo(({ className, icon, label, href, onClick }) => {
|
|||
}, [href, locationHash]);
|
||||
const inputType = typeof onClick === 'function' ? 'button' : 'link';
|
||||
return (
|
||||
<Input className={classnames(className, styles['button'], 'focusable-with-border', { 'active': active })} type={inputType} href={href} onClick={onClick}>
|
||||
<Input className={classnames(className, styles['nav-bar-button-container'], 'focusable-with-border', { 'active': active })} type={inputType} href={href} onClick={onClick}>
|
||||
<Icon className={styles['icon']} icon={icon} />
|
||||
<div className={styles['label']}>{label}</div>
|
||||
</Input>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
.button {
|
||||
.nav-bar-button-container {
|
||||
display: inline-flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
|
|
|
|||
Loading…
Reference in a new issue