blob: 425d9e1a98edd794ca13c0d0328b222582d56fc9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
.o_newsletter_modal {
.modal-header {
padding: 0;
border: none;
}
.modal-title {
display: none;
}
.close {
z-index: $zindex-modal;
@include o-position-absolute(0, 0);
width: $font-size-lg * 2;
height: $font-size-lg * 2;
line-height: $font-size-lg * 2;
margin: 0;
padding: 0;
@include o-bg-color(color-yiq(o-color('primary')), o-color('primary'), $with-extras: false);
box-shadow: $box-shadow-sm;
opacity: 1;
}
}
|