mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-04-20 10:42:12 +00:00
fix: padding on MetaPreview
This commit is contained in:
parent
cc046ce48a
commit
c3d506c749
2 changed files with 12 additions and 0 deletions
|
|
@ -2,6 +2,11 @@
|
|||
|
||||
@import (reference) '~stremio/common/screen-sizes.less';
|
||||
|
||||
:import('~stremio/common/MetaPreview/styles.less') {
|
||||
action-buttons-container: action-buttons-container;
|
||||
}
|
||||
|
||||
|
||||
@seasons-bar-height: 6rem;
|
||||
@padding: 1rem;
|
||||
@videos-height: 60%;
|
||||
|
|
@ -33,6 +38,12 @@
|
|||
.info {
|
||||
padding: @padding;
|
||||
overflow-y: auto;
|
||||
|
||||
.side-drawer-meta-preview {
|
||||
.action-buttons-container {
|
||||
padding-top: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.content {
|
||||
|
|
|
|||
|
|
@ -63,6 +63,7 @@ const SideDrawer = ({ seriesInfo, className, closeSideBar, sideDrawerOpen, ...pr
|
|||
<div className={classNames(styles['side-drawer'], className)} inert={!sideDrawerOpen ? '' : undefined}>
|
||||
<div className={styles['info']}>
|
||||
<MetaPreview
|
||||
className={styles['side-drawer-meta-preview']}
|
||||
compact={true}
|
||||
name={metaItem.name}
|
||||
logo={metaItem.logo}
|
||||
|
|
|
|||
Loading…
Reference in a new issue