mirror of https://github.com/astrit/css.gg.git
31 lines
526 B
CSS
31 lines
526 B
CSS
.gg-lastpass {
|
|
box-sizing: border-box;
|
|
position: relative;
|
|
display: block;
|
|
transform: scale(var(--ggs,1));
|
|
width: 20px;
|
|
height: 12px
|
|
}
|
|
|
|
.gg-lastpass::after,
|
|
.gg-lastpass::before {
|
|
content: "";
|
|
display: block;
|
|
box-sizing: border-box;
|
|
position: absolute;
|
|
background: currentColor;
|
|
border-radius: 22px
|
|
}
|
|
|
|
.gg-lastpass::before {
|
|
width: 4px;
|
|
height: 4px;
|
|
box-shadow: 6px 0 0,12px 0 0;
|
|
top: 4px
|
|
}
|
|
|
|
.gg-lastpass::after {
|
|
width: 2px;
|
|
height: 12px;
|
|
right: 0
|
|
} |