mirror of https://github.com/astrit/css.gg.git
24 lines
493 B
CSS
24 lines
493 B
CSS
.gg-mini-player {
|
|
box-sizing: border-box;
|
|
position: relative;
|
|
display: block;
|
|
transform: scale(var(--ggs,1));
|
|
width: 18px;
|
|
height: 18px;
|
|
border: 2px solid;
|
|
border-radius: 3px
|
|
}
|
|
|
|
.gg-mini-player::before {
|
|
content: "";
|
|
display: block;
|
|
box-sizing: border-box;
|
|
position: absolute;
|
|
width: 8px;
|
|
height: 8px;
|
|
background: currentColor;
|
|
border-top-left-radius: 3px;
|
|
border-bottom-right-radius: 3px;
|
|
bottom: -1px;
|
|
right: -1px
|
|
} |