2018-09-23 16:31:47 +00:00
|
|
|
.manage {
|
2018-08-15 17:20:41 +00:00
|
|
|
display: flex;
|
|
|
|
|
2018-08-16 21:41:32 +00:00
|
|
|
@media (max-width: @site-mobile-width) {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
2018-09-23 16:31:47 +00:00
|
|
|
&__sidebar {
|
2018-08-15 17:20:41 +00:00
|
|
|
flex: 0 0 auto;
|
2018-09-23 16:31:47 +00:00
|
|
|
width: 280px;
|
2018-08-16 21:41:32 +00:00
|
|
|
|
|
|
|
@media (max-width: @site-mobile-width) {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2018-08-15 17:20:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&__content {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
}
|
2018-12-26 16:03:26 +00:00
|
|
|
|
|
|
|
&__description {
|
|
|
|
font-size: .9em;
|
|
|
|
margin: 1px 2px;
|
|
|
|
border-bottom: 1px solid var(--accent-colour);
|
|
|
|
padding: 2px 5px;
|
|
|
|
}
|
2018-08-15 17:20:41 +00:00
|
|
|
}
|