upd: replace more hardcoded radius values

This commit is contained in:
ShittyKopper 2023-11-01 23:00:55 +03:00
parent d4d2f6f871
commit 5ac10730ae
5 changed files with 8 additions and 5 deletions

View file

@ -37,7 +37,10 @@ const text = $computed(() => {
<style lang="scss" module>
.root {
box-shadow: 0 0 0 3px var(--panel);
border-radius: 120%; // Blink100%
// sharkey(ShittyKopper): the comment mentions something about 100% radius not behaving correctly on blink.
// couldn't reproduce, assuming the 120% here was just an old workaround
border-radius: var(--radius-full); // Blink100%
&.status_online {
background: #58d4c9;