mirror of https://github.com/astrit/css.gg.git
36 lines
740 B
CSS
36 lines
740 B
CSS
.gg-format-indent-increase {
|
|
box-sizing: border-box;
|
|
position: relative;
|
|
display: block;
|
|
transform: scale(var(--ggs,1));
|
|
width: 16px;
|
|
height: 14px;
|
|
border-top: 2px solid;
|
|
border-bottom: 2px solid
|
|
}
|
|
|
|
.gg-format-indent-increase::after,
|
|
.gg-format-indent-increase::before {
|
|
content: "";
|
|
display: block;
|
|
box-sizing: border-box;
|
|
position: absolute;
|
|
top: 2px
|
|
}
|
|
|
|
.gg-format-indent-increase::before {
|
|
border-left: 4px solid;
|
|
left: 1px;
|
|
width: 0;
|
|
height: 0;
|
|
border-top: 3px solid transparent;
|
|
border-bottom: 3px solid transparent
|
|
}
|
|
|
|
.gg-format-indent-increase::after {
|
|
width: 8px;
|
|
height: 6px;
|
|
border-top: 2px solid;
|
|
border-bottom: 2px solid;
|
|
right: 0
|
|
} |