24 lines
359 B
SCSS
24 lines
359 B
SCSS
.swal-button {
|
|
border-radius: 3px;
|
|
font-size: 16px;
|
|
&:focus {
|
|
box-shadow: none;
|
|
}
|
|
&.swal-button--confirm {
|
|
@include button-shadow(primary);
|
|
background-color: color(primary);
|
|
&:focus {
|
|
opacity: .8;
|
|
}
|
|
}
|
|
}
|
|
|
|
.swal-footer {
|
|
text-align: center;
|
|
}
|
|
|
|
.swal-text {
|
|
text-align: center;
|
|
line-height: 24px;
|
|
font-weight: 500;
|
|
} |