mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-11 21:27:05 +00:00
pagination input placeholder added to discover
This commit is contained in:
parent
c384d73536
commit
76aa4b3b0b
2 changed files with 15 additions and 1 deletions
|
|
@ -75,7 +75,7 @@ const Discover = ({ urlParams, queryParams }) => {
|
|||
paginationInput !== null ?
|
||||
<PaginationInput {...paginationInput} className={styles['pagination-input']} />
|
||||
:
|
||||
null
|
||||
<PaginationInput label={'1'} className={classnames(styles['pagination-input'], styles['pagination-input-placeholder'])} />
|
||||
}
|
||||
</div>
|
||||
:
|
||||
|
|
|
|||
|
|
@ -90,6 +90,20 @@
|
|||
height: 3.5rem;
|
||||
margin-left: 1.5rem;
|
||||
|
||||
&.pagination-input-placeholder {
|
||||
pointer-events: none;
|
||||
|
||||
.pagination-prev-button-container, .pagination-next-button-container {
|
||||
.pagination-button-icon {
|
||||
fill: @color-surface-dark5-90;
|
||||
}
|
||||
}
|
||||
|
||||
.pagination-label {
|
||||
color: @color-surface-dark5-90;
|
||||
}
|
||||
}
|
||||
|
||||
.pagination-prev-button-container, .pagination-next-button-container {
|
||||
width: 3.5rem;
|
||||
height: 3.5rem;
|
||||
|
|
|
|||
Loading…
Reference in a new issue