1
0

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
@@ -37,7 +37,10 @@ const text = $computed(() => {
<style lang="scss" module>
.root {
box-shadow: 0 0 0 3px var(--panel);
border-radius: 120%; // Blinkのバグか知らんけど、100%ぴったりにすると何故か若干楕円でレンダリングされる
// 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); // Blinkのバグか知らんけど、100%ぴったりにすると何故か若干楕円でレンダリングされる
&.status_online {
background: #58d4c9;