More RPine

This commit is contained in:
ThatOneCalculator 2022-07-23 21:16:35 -07:00
parent f41374789e
commit c1f301056b
3 changed files with 10 additions and 6 deletions

View file

@ -265,6 +265,10 @@ function more(ev: MouseEvent) {
color: var(--fgOnAccent);
}
> .text {
margin-left: 1rem;
}
}
> .instance {

View file

@ -4,17 +4,17 @@
:points="pointsNote"
fill="none"
stroke-width="1"
stroke="#41ddde"/>
stroke="#c4a7e7"/>
<polyline
:points="pointsReply"
fill="none"
stroke-width="1"
stroke="#f7796c"/>
stroke="#eb6f92"/>
<polyline
:points="pointsRenote"
fill="none"
stroke-width="1"
stroke="#a1de41"/>
stroke="#ebbcba"/>
<polyline
:points="pointsTotal"
fill="none"

View file

@ -192,19 +192,19 @@ defineExpose<WidgetComponentExpose>({
&:nth-child(1) {
> .meter > .val {
background: #f7796c;
background: #eb6f92;
}
}
&:nth-child(2) {
> .meter > .val {
background: #a1de41;
background: #ebbcba;
}
}
&:nth-child(3) {
> .meter > .val {
background: #41ddde;
background: #c4a7e7;
}
}
}