mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-11 21:27:05 +00:00
Library sizes fixed
This commit is contained in:
parent
491942c625
commit
d7f8674638
2 changed files with 11 additions and 4 deletions
|
|
@ -5,7 +5,7 @@ const styles = require('./styles');
|
|||
class Library extends React.Component {
|
||||
render() {
|
||||
return (
|
||||
<React.Fragment>
|
||||
<div className={styles['library-container']}>
|
||||
<NavBar
|
||||
backButton={false}
|
||||
tabs={[
|
||||
|
|
@ -17,8 +17,8 @@ class Library extends React.Component {
|
|||
searchBar={true}
|
||||
userMenu={true}
|
||||
/>
|
||||
<div className={styles['library-container']} />
|
||||
</React.Fragment>
|
||||
<div className={styles['library-content']} />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,11 @@
|
|||
.library-container {
|
||||
background-color: var(--color-background);
|
||||
height: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
background-color: var(--color-background);
|
||||
|
||||
.library-content {
|
||||
flex: 1;
|
||||
align-self: stretch;
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue