css.gg
Version:
Minimalistic Icon library Designed by code.
45 lines (42 loc) • 971 B
CSS
.gg-arrow-align-h {
box-sizing: border-box;
position: relative;
display: block;
transform: scale(var(--ggs,1));
width: 20px;
height: 10px;
background:
linear-gradient(
to left,
currentColor 15px,transparent 0)
no-repeat 2px 4px/6px 2px,
linear-gradient(
to left,
currentColor 15px,transparent 0)
no-repeat 12px 4px/6px 2px,
linear-gradient(
to left,
currentColor 15px,transparent 0)
no-repeat center/2px 10px
}
.gg-arrow-align-h::after,
.gg-arrow-align-h::before {
content: "";
display: block;
box-sizing: border-box;
position: absolute;
width: 6px;
height: 6px;
transform: rotate(45deg);
top: 2px
}
.gg-arrow-align-h::after {
border-bottom: 2px solid;
border-left: 2px solid;
left: 1px
}
.gg-arrow-align-h::before {
border-top: 2px solid;
border-right: 2px solid;
right: 1px
}