blob: a5b09876c3274300831ed7e89df3440f65abf68a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
@use 'iro-sass/src/index' as iro;
@use 'iro-design/src/functions' as fn;
@include iro.props-namespace('alerts') {
@include iro.bem-scope(iro.props-namespace()) {
@include iro.bem-elem('alert') {
margin-top: fn.global-dim(--paragraph --margin-top);
> :first-child {
margin-top: 0;
}
}
}
}
|