stremio-web/src/routes/Player/SideDrawer/SideDrawer.less
2024-12-09 17:22:37 +02:00

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