Fix central point.

This commit is contained in:
Oleksandr Kozachuk 2025-06-15 14:50:26 +02:00
parent d8874f1164
commit 8789b96ada

View File

@ -402,21 +402,21 @@
position: absolute; position: absolute;
top: 50%; top: 50%;
left: 50%; left: 50%;
width: calc(var(--clock-size) * 0.15); width: calc(var(--clock-size) * 0.13);
height: calc(var(--clock-size) * 0.15); height: calc(var(--clock-size) * 0.13);
transform: translate(-50%, -50%) translateZ(0); transform: translate(-50%, -50%) translateZ(0);
background: url('logo.svg') center/contain no-repeat; background: url('logo.svg') center/contain no-repeat;
background-color: transparent; background-color: transparent;
border-radius: 50%; border-radius: 50%;
box-shadow: 0 0 8px rgba(0, 255, 255, 0.8); /* box-shadow: 0 0 8px rgba(0, 255, 255, 0.8); */
z-index: 2; z-index: 2;
pointer-events: none; pointer-events: none;
} }
@media screen and (min-width: 1200px) { @media screen and (min-width: 1200px) {
.clock-center { .clock-center {
width: calc(var(--clock-size) * 0.105); width: calc(var(--clock-size) * 0.085);
height: calc(var(--clock-size) * 0.105); height: calc(var(--clock-size) * 0.085);
} }
} }