27 lines
449 B
CSS
27 lines
449 B
CSS
@charset "UTF-8";
|
|
|
|
i.icon.check {
|
|
position: relative;
|
|
width: 22px;
|
|
height: 22px;
|
|
box-sizing: border-box;
|
|
display: block;
|
|
border-radius: 100px;
|
|
border: 2px solid transparent;
|
|
|
|
&::after {
|
|
position: absolute;
|
|
content: "";
|
|
top: -1px;
|
|
left: 3px;
|
|
width: 6px;
|
|
height: 10px;
|
|
box-sizing: border-box;
|
|
display: block;
|
|
border-width: 0 2px 2px 0;
|
|
border-style: solid;
|
|
transform-origin: bottom left;
|
|
transform: rotate(45deg);
|
|
}
|
|
}
|