mirror of
https://github.com/zoriya/flood.git
synced 2025-12-21 14:45:14 +00:00
53 lines
531 B
SCSS
53 lines
531 B
SCSS
html,
|
|
body {
|
|
height: 100%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.container {
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
.flood {
|
|
align-items: stretch;
|
|
display: flex;
|
|
height: 100%;
|
|
}
|
|
|
|
.sidebar {
|
|
flex: 1;
|
|
min-width: 200px;
|
|
max-width: 240px;
|
|
}
|
|
|
|
.content {
|
|
display: flex;
|
|
height: 100%;
|
|
flex: 5;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.action-bar {
|
|
flex: 1;
|
|
min-height: 60px;
|
|
max-height: 60px;
|
|
}
|
|
|
|
.torrent {
|
|
|
|
&__header {
|
|
flex: 1;
|
|
min-height: 35px;
|
|
max-height: 35px;
|
|
}
|
|
|
|
|
|
&__list {
|
|
|
|
&__wrapper {
|
|
flex: 1;
|
|
}
|
|
}
|
|
}
|