Library sizes fixed

This commit is contained in:
NikolaBorislavovHristov 2019-05-13 11:37:05 +03:00
parent 491942c625
commit d7f8674638
2 changed files with 11 additions and 4 deletions

View file

@ -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>
);
}
}

View file

@ -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;
}
}