You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
611 B
32 lines
611 B
6 years ago
|
.modal {
|
||
|
.modal-header {
|
||
|
padding: 0;
|
||
|
|
||
|
.close {
|
||
|
padding: $modal-title-padding;
|
||
|
margin-top: 0;
|
||
|
}
|
||
|
|
||
|
.modal-title {
|
||
|
padding: $modal-title-padding;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.modal-body {
|
||
|
& > .loading-icon {
|
||
|
display: block;
|
||
|
position: relative;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
|
||
|
.icon {
|
||
|
position: absolute;
|
||
|
top: 50%;
|
||
|
/*rtl:ignore*/
|
||
|
left: 50%;
|
||
|
transform: translate(-50%, -50%);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|