mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-29 05:38:48 +00:00
menu item class name changed
This commit is contained in:
parent
72d133c785
commit
d92a2b7d05
2 changed files with 2 additions and 2 deletions
|
|
@ -95,7 +95,7 @@ const MetaItem = React.memo(({ className, id, type, name, posterShape = 'square'
|
|||
renderMenu={() => (
|
||||
<div className={styles['menu-container']}>
|
||||
{menuOptions.map(({ label, type }) => (
|
||||
<Button key={type} className={styles['menu-item']} data-id={id} data-type={type} onClick={menuOptionOnClick}>
|
||||
<Button key={type} className={styles['menu-option-container']} data-id={id} data-type={type} onClick={menuOptionOnClick}>
|
||||
{label}
|
||||
</Button>
|
||||
))}
|
||||
|
|
|
|||
|
|
@ -162,7 +162,7 @@
|
|||
max-width: 12rem;
|
||||
background-color: var(--color-surfacelighter);
|
||||
|
||||
.menu-item {
|
||||
.menu-option-container {
|
||||
font-size: 1.1rem;
|
||||
padding: 0.5rem;
|
||||
color: var(--color-backgrounddarker);
|
||||
|
|
|
|||
Loading…
Reference in a new issue