fix(ui): logo orbits stroke 5→12 — actually visible at 28px
stroke=5 в viewBox 256 при 28px render = 5*28/256 = 0.55px (subpixel, почти невидимо). stroke=12 даёт ~1.31px real — чёткая линия. Заодно переключил с --color-line-2 на --color-line чтобы немного контрастнее на bg-surface.
This commit is contained in:
@@ -190,9 +190,10 @@ function SidebarContent({
|
||||
className="shrink-0 text-accent"
|
||||
>
|
||||
<g transform="translate(128 128)">
|
||||
{/* Outer orbits — line tone, bolder stroke для видимости при 28px */}
|
||||
<circle r="96" fill="none" stroke="var(--color-line-2)" strokeWidth="5" />
|
||||
<circle r="62" fill="none" stroke="var(--color-line-2)" strokeWidth="5" />
|
||||
{/* Outer orbits — line tone. Math: viewBox 256 при render 28px =
|
||||
* 0.11px/unit. stroke=12 даёт ~1.3px real — чёткая видимая линия. */}
|
||||
<circle r="96" fill="none" stroke="var(--color-line)" strokeWidth="12" />
|
||||
<circle r="62" fill="none" stroke="var(--color-line)" strokeWidth="12" />
|
||||
{/* Outer orbit dots (3) — large accent dots */}
|
||||
<circle cx="96" cy="0" r="16" fill="currentColor" />
|
||||
<circle cx="-48" cy="83.14" r="14" fill="currentColor" opacity="0.7" />
|
||||
|
||||
Reference in New Issue
Block a user