30 lines
433 B
CSS
30 lines
433 B
CSS
@charset "UTF-8";
|
|
|
|
i.icon.display.grid {
|
|
display: block;
|
|
height: 14px;
|
|
width: 14px;
|
|
box-sizing: border-box;
|
|
position: relative;
|
|
border: 2px solid transparent;
|
|
box-shadow: 0 0 0 2px;
|
|
|
|
&::after,
|
|
&::before {
|
|
top: 0;
|
|
left: 0;
|
|
position: absolute;
|
|
content: "";
|
|
width: 10px;
|
|
height: 4px;
|
|
box-sizing: border-box;
|
|
display: block;
|
|
border-right: 4px solid;
|
|
border-left: 4px solid;
|
|
}
|
|
|
|
&::before {
|
|
top: 6px;
|
|
}
|
|
}
|