mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 12:16:06 +08:00
39 lines
455 B
SCSS
39 lines
455 B
SCSS
|
.sci-dialog {
|
||
|
|
||
|
.modal-dialog {
|
||
|
width: 500px;
|
||
|
}
|
||
|
|
||
|
.sci-dialog__icon {
|
||
|
margin-right: 1em;
|
||
|
|
||
|
.fas {
|
||
|
font-size: 2.5em;
|
||
|
}
|
||
|
|
||
|
&.error .fas {
|
||
|
color: $brand-danger;
|
||
|
}
|
||
|
|
||
|
&.warning .fas {
|
||
|
color: $brand-warning;
|
||
|
}
|
||
|
|
||
|
&.info .fas {
|
||
|
color: $brand-info;
|
||
|
}
|
||
|
|
||
|
&.success .fas {
|
||
|
color: $brand-success;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.modal-body {
|
||
|
display: flex;
|
||
|
}
|
||
|
|
||
|
.modal-footer {
|
||
|
text-align: center;
|
||
|
}
|
||
|
}
|