mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-11 21:27:05 +00:00
use thin arrows in SeasonsBar
This commit is contained in:
parent
9ed013f0a3
commit
e95120e029
1 changed files with 2 additions and 2 deletions
|
|
@ -46,7 +46,7 @@ const SeasonsBar = ({ className, seasons, season, onSelect }) => {
|
|||
return (
|
||||
<div className={classnames(className, styles['seasons-bar-container'])}>
|
||||
<Button className={styles['prev-season-button']} data-action={'prev'} onClick={prevNextButtonOnClick}>
|
||||
<Icon className={styles['icon']} icon={'ic_arrow_left'} />
|
||||
<Icon className={styles['icon']} icon={'ic_arrow_thin_left'} />
|
||||
<div className={styles['label']}>Prev</div>
|
||||
</Button>
|
||||
<Multiselect
|
||||
|
|
@ -59,7 +59,7 @@ const SeasonsBar = ({ className, seasons, season, onSelect }) => {
|
|||
/>
|
||||
<Button className={styles['next-season-button']} data-action={'next'} onClick={prevNextButtonOnClick}>
|
||||
<div className={styles['label']}>Next</div>
|
||||
<Icon className={styles['icon']} icon={'ic_arrow_right'} />
|
||||
<Icon className={styles['icon']} icon={'ic_arrow_thin_right'} />
|
||||
</Button>
|
||||
</div>
|
||||
);
|
||||
|
|
|
|||
Loading…
Reference in a new issue