mirror of https://github.com/astrit/css.gg.git
35 lines
707 B
CSS
35 lines
707 B
CSS
.gg-arrows-expand-down-right {
|
|
box-sizing: border-box;
|
|
position: relative;
|
|
display: block;
|
|
transform: scale(var(--ggs,1));
|
|
width: 16px;
|
|
height: 16px;
|
|
box-shadow: 6px 6px 0 -4px
|
|
}
|
|
|
|
.gg-arrows-expand-down-right::before {
|
|
content: "";
|
|
display: block;
|
|
box-sizing: border-box;
|
|
position: absolute;
|
|
width: 8px;
|
|
height: 8px;
|
|
border: 2px solid;
|
|
border-radius: 1px;
|
|
left: 0
|
|
}
|
|
|
|
.gg-arrows-expand-down-right::after {
|
|
content: "";
|
|
display: block;
|
|
box-sizing: border-box;
|
|
position: absolute;
|
|
background: currentColor;
|
|
width: 2px;
|
|
height: 10px;
|
|
transform: rotate(-45deg);
|
|
top: 8px;
|
|
right: 2px;
|
|
border-radius: 4px
|
|
} |