mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-11 21:27:05 +00:00
fix(content): Content height was too big
This commit is contained in:
parent
b12e44c086
commit
97ed4b519a
3 changed files with 3 additions and 3 deletions
|
|
@ -27,7 +27,7 @@
|
|||
|
||||
.addons-content {
|
||||
width: 100%;
|
||||
height: calc(100% + var(--bottom-overlay-size));
|
||||
height: 100%;
|
||||
margin-bottom: calc(var(--bottom-overlay-size) * -1);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@
|
|||
|
||||
.discover-content {
|
||||
width: 100%;
|
||||
height: calc(100% + var(--bottom-overlay-size));
|
||||
height: 100%;
|
||||
margin-bottom: calc(var(--bottom-overlay-size) * -1);
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@
|
|||
|
||||
.library-content {
|
||||
width: 100%;
|
||||
height: calc(100% + var(--bottom-overlay-size));
|
||||
height: 100%;
|
||||
margin-bottom: calc(var(--bottom-overlay-size) * -1);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
|
|
|||
Loading…
Reference in a new issue