jitsi-meet/css/_meter.scss
theluyuan 38ba663466
Some checks failed
Close stale issues and PRs / stale (push) Has been cancelled
init
2025-09-02 14:49:16 +08:00

31 lines
429 B
SCSS

.jitsi-icon {
&.metr {
display: inline-block;
& > svg {
fill: #525252;
width: 38px;
}
}
&.metr--disabled {
& > svg {
fill: #525252;
}
}
}
.metr-l-0 {
rect:first-child {
fill: #1EC26A;
}
}
@for $i from 1 through 7 {
.metr-l-#{$i} {
rect:nth-child(-n+#{$i+1}) {
fill: #1EC26A;
}
}
}