mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-04-11 14:20:28 +00:00
40 lines
No EOL
701 B
Text
40 lines
No EOL
701 B
Text
// Copyright (C) 2017-2024 Smart code 203358507
|
|
|
|
@import (reference) '~stremio/common/screen-sizes.less';
|
|
|
|
@seasons-bar-height: 5rem;
|
|
|
|
.overlay {
|
|
display: none;
|
|
|
|
&.open {
|
|
display: block;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: rgba(0, 0, 0, 0.2);
|
|
z-index: 1;
|
|
}
|
|
}
|
|
|
|
.side-drawer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-around;
|
|
|
|
.info {
|
|
padding: 1rem;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.content {
|
|
height: 60%;
|
|
|
|
.videos {
|
|
overflow-y: auto;
|
|
height: calc(100% - @seasons-bar-height);
|
|
}
|
|
}
|
|
} |