mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-08-28 06:01:39 -07:00
20 lines
No EOL
390 B
SCSS
20 lines
No EOL
390 B
SCSS
@use '../../styles/design-system.scss' as *;
|
|
|
|
@mixin searchMessageLayout {
|
|
color: red;
|
|
background-color: white;
|
|
@include u-margin-bottom(.5);
|
|
@include u-margin-top(.5);
|
|
@include u-padding-left(1);
|
|
}
|
|
|
|
.showMessage {
|
|
@include searchMessageLayout;
|
|
display: block;
|
|
width: fit-content;
|
|
}
|
|
|
|
.hideMessage {
|
|
@include searchMessageLayout;
|
|
visibility: hidden;
|
|
} |