mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 15:34:12 +01:00
26 lines
644 B
SCSS
26 lines
644 B
SCSS
/*
|
|
* @copyright Copyright (C) 2010-2023 Combodo SARL
|
|
* @license http://opensource.org/licenses/AGPL-3.0
|
|
*/
|
|
|
|
/* Note: We have to wrap it in the ID in order to overload its rules, otherwise, the ID takes over the simple CSS class... */
|
|
#ibo-center-container {
|
|
&.ibo-center-container--with-side-content {
|
|
display: flex;
|
|
align-items: stretch;
|
|
|
|
#ibo-main-content {
|
|
flex-grow: 1; /* To occupy maximum width, side content will handle its width */
|
|
}
|
|
}
|
|
}
|
|
|
|
.ibo-v-spacer {
|
|
padding-top: 1em;
|
|
}
|
|
|
|
#ibo-side-content {
|
|
background-color: $ibo-content-block--background-color;
|
|
border-left: $ibo-content-block--border;
|
|
}
|