css.gg
Version:
Minimalistic Icon library Designed by code.
36 lines • 819 B
CSS
.gg-edit-flip-h {
box-sizing: border-box;
position: relative;
display: block;
width: 18px;
height: 18px;
transform: scale(var(--ggs,1));
background:
linear-gradient(
to left,currentColor 22px,
transparent 0)
no-repeat center/2px 22px
}
.gg-edit-flip-h::after,
.gg-edit-flip-h::before {
content: "";
display: block;
box-sizing: border-box;
position: absolute;
width: 6px;
height: 14px;
border: 2px solid;
top: 2px
}
.gg-edit-flip-h::before {
border-right: 0;
border-top-left-radius: 3px;
border-bottom-left-radius: 3px
}
.gg-edit-flip-h::after {
opacity: .5;
border-left: 0;
border-top-right-radius: 3px;
border-bottom-right-radius: 3px;
right: 0
}