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); color: var(--fgOnAccent);
} }
> .text {
margin-left: 1rem;
}
} }
> .instance { > .instance {

View file

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

View file

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