mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 07:24:13 +01:00
22 lines
416 B
SCSS
22 lines
416 B
SCSS
/*
|
|
* @copyright Copyright (C) 2010-2024 Combodo SAS
|
|
* @license http://opensource.org/licenses/AGPL-3.0
|
|
*/
|
|
|
|
$ibo-toolbar--button-margin-top: $ibo-spacing-500 !default;
|
|
|
|
.ibo-toolbar {
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
&.ibo-toolbar--action {
|
|
position: relative;
|
|
}
|
|
|
|
&.ibo-toolbar--button {
|
|
@extend %ibo-vertically-centered-content;
|
|
margin-top: $ibo-toolbar--button-margin-top;
|
|
}
|
|
}
|
|
|