2021-08-25 13:05:12 +02:00
|
|
|
.CenterPanel {
|
2021-05-27 12:58:07 +02:00
|
|
|
flex: 1 1 auto;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
|
2020-10-25 22:17:13 +01:00
|
|
|
.octo-board {
|
|
|
|
flex: 0 1 auto;
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
}
|
2021-05-27 12:58:07 +02:00
|
|
|
|
|
|
|
|
2021-08-25 13:05:12 +02:00
|
|
|
.BoardComponent {
|
2021-05-27 12:58:07 +02:00
|
|
|
flex: 1 1 auto;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2021-08-12 15:39:44 +02:00
|
|
|
overflow: hidden;
|
2021-05-27 12:58:07 +02:00
|
|
|
|
|
|
|
> * {
|
2021-08-12 15:39:44 +02:00
|
|
|
|
2021-05-27 12:58:07 +02:00
|
|
|
padding: 0 80px;
|
|
|
|
|
|
|
|
@media screen and (max-width: 768px) {
|
|
|
|
padding: 0 40px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
padding-top: 24px;
|
|
|
|
@media screen and (max-width: 768px) {
|
|
|
|
padding: 0 8px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
padding-bottom: 8px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .top-head {
|
|
|
|
position: sticky;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
2021-08-06 19:58:28 +02:00
|
|
|
background: rgb(var(--center-channel-bg-rgb));
|
2021-05-27 12:58:07 +02:00
|
|
|
z-index: 100;
|
|
|
|
}
|
2021-08-12 15:39:44 +02:00
|
|
|
|
|
|
|
> div:nth-child(2) {
|
2021-08-23 12:19:56 +02:00
|
|
|
padding: 0 0 0 1px;
|
2021-08-12 15:39:44 +02:00
|
|
|
margin-left: 80px;
|
2021-09-22 19:16:02 +02:00
|
|
|
|
|
|
|
@media (max-width: 768px) {
|
|
|
|
margin-left: 0;
|
|
|
|
padding-left: 20px;
|
|
|
|
-webkit-overflow-scrolling: touch;
|
|
|
|
}
|
2021-08-12 15:39:44 +02:00
|
|
|
}
|
2021-05-27 12:58:07 +02:00
|
|
|
}
|