mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-28 06:34:14 +01:00
16 lines
532 B
SCSS
16 lines
532 B
SCSS
/*
|
|
* @copyright Copyright (C) 2010-2024 Combodo SAS
|
|
* @license http://opensource.org/licenses/AGPL-3.0
|
|
*/
|
|
|
|
$ibo-alert--spacing-top--with-same-block: $ibo-spacing-200 !default;
|
|
$ibo-alert--spacing-top--with-other-blocks: $ibo-spacing-500 !default;
|
|
|
|
/* Spacing between alert blocks */
|
|
.ibo-alert + .ibo-alert {
|
|
margin-top: $ibo-alert--spacing-top--with-same-block;
|
|
}
|
|
/* Spacing between an alert block and something else */
|
|
.ibo-alert + .ibo-block:not(.ibo-alert) {
|
|
margin-top: $ibo-alert--spacing-top--with-other-blocks;
|
|
} |