release: bump version to 0.55.0
Some checks failed
ci / backend (push) Has been cancelled
ci / frontend (push) Has been cancelled
ci / delivery (push) Has been cancelled
release / images (push) Has been cancelled

This commit is contained in:
linkong
2026-05-13 15:31:29 +08:00
parent 3b4347c87d
commit 39854b9983
23 changed files with 239 additions and 36 deletions

View File

@@ -1390,12 +1390,13 @@
.earth-mobile-settings-switch-track::after {
content: "";
position: absolute;
top: 4px;
top: 50%;
left: 4px;
width: 20px;
height: 20px;
border-radius: 50%;
background: #fff;
transform: translateY(-50%);
transition: transform 0.18s ease;
}
@@ -1404,7 +1405,7 @@
}
.earth-mobile-settings-switch input:checked + .earth-mobile-settings-switch-track::after {
transform: translateX(16px);
transform: translate(16px, -50%);
}
label.is-disabled.earth-mobile-settings-card {
@@ -2477,13 +2478,14 @@ label.is-disabled.earth-mobile-settings-card {
.earth-settings-switch-track::after {
content: "";
position: absolute;
top: calc(3px * var(--hud-scale));
top: 50%;
left: calc(3px * var(--hud-scale));
width: calc(16px * var(--hud-scale));
height: calc(16px * var(--hud-scale));
border-radius: 50%;
background: #edf4fc;
box-shadow: 0 6px 14px rgba(1, 8, 18, 0.26);
transform: translateY(-50%);
transition: transform 0.18s ease;
}
@@ -2493,7 +2495,7 @@ label.is-disabled.earth-mobile-settings-card {
}
.earth-settings-switch input:checked + .earth-settings-switch-track::after {
transform: translateX(calc(16px * var(--hud-scale)));
transform: translate(calc(16px * var(--hud-scale)), -50%);
}
.earth-settings-item.is-disabled {