mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-26 05:44:12 +01:00
27 lines
520 B
SCSS
27 lines
520 B
SCSS
/*!
|
|
* copyright Copyright (C) 2010-2020 Combodo SARL
|
|
* license http://opensource.org/licenses/AGPL-3.0
|
|
*/
|
|
|
|
$ibo-toolbar--button-margin-top: 16px !default;
|
|
$ibo-toolbar--margin: 6px 0 !default;
|
|
|
|
.ibo-toolbar {
|
|
margin: $ibo-toolbar--margin;
|
|
|
|
&.ibo-toolbar--action {
|
|
position: relative;
|
|
}
|
|
|
|
&.ibo-toolbar--button {
|
|
@extend %ibo-vertically-centered-content;
|
|
margin-top: $ibo-toolbar--button-margin-top;
|
|
}
|
|
|
|
&.ibo-toolbar-top{
|
|
padding-left: calc(90px + 64px);
|
|
text-align: right;
|
|
}
|
|
}
|
|
|