scinote-web/app/assets/stylesheets/shared_styles/elements/dialogs.scss
artoscinote 401a32edd9
Implement failed snapshot pop-up on task screen [SCI-6612] (#3950)
* Implement failed snapshot pop-up on task screen [SCI-6612]

* Copy change [SCI-6612]

* Proper handling of snapshot transition error [SCI-6612]

* Move modal auto open logic to JS file [SCI-6612]

* Remove unnecessary .html_safe [SCI-6612]
2022-04-04 11:04:03 +02:00

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;
}
}