UNPKG

384 BSCSSView Raw
1.#{$rt-namespace}__close-button {
2 color: #fff;
3 background: transparent;
4 outline: none;
5 border: none;
6 padding: 0;
7 cursor: pointer;
8 opacity: 0.7;
9 transition: 0.3s ease;
10 align-self: flex-start;
11
12 &--light {
13 color: #000;
14 opacity: 0.3;
15 }
16
17 & > svg {
18 fill: currentColor;
19 height: 16px;
20 width: 14px;
21 }
22
23 &:hover, &:focus {
24 opacity: 1;
25 }
26}