40 lines
578 B
SCSS
40 lines
578 B
SCSS
|
@import '../../../../assets/styles/common';
|
||
|
@import './color';
|
||
|
@import './web';
|
||
|
@import './h5';
|
||
|
|
||
|
|
||
|
.icon-close {
|
||
|
display: inline-block;
|
||
|
width: 24px;
|
||
|
height: 24px;
|
||
|
position: relative;
|
||
|
border-radius: 50%;
|
||
|
}
|
||
|
|
||
|
.icon-close::before,
|
||
|
.icon-close::after {
|
||
|
content: "";
|
||
|
position: absolute;
|
||
|
background-color: #8F959E;
|
||
|
height: 16px;
|
||
|
width: 2px;
|
||
|
top: 50%;
|
||
|
left: 50%;
|
||
|
margin-top: -8px;
|
||
|
margin-left: -1px;
|
||
|
}
|
||
|
|
||
|
.icon-close::before {
|
||
|
transform: rotate(45deg);
|
||
|
}
|
||
|
|
||
|
.icon-close::after {
|
||
|
transform: rotate(-45deg);
|
||
|
}
|
||
|
|
||
|
.tab-icon {
|
||
|
position: absolute;
|
||
|
left: 20px;
|
||
|
}
|