Minor UI nits

This commit is contained in:
doop
2026-05-04 19:33:22 +00:00
parent 74f2c58b29
commit 5f2cf68e80
3 changed files with 5 additions and 7 deletions
+2 -4
View File
@@ -25,7 +25,6 @@ body {
justify-content: flex-end;
align-items: stretch;
decorator: vertical-gradient(#00000000 #151610F2);
padding: 48dp 0 40dp 0;
filter: opacity(0);
transition: filter 0.2s linear-in-out;
}
@@ -42,18 +41,17 @@ body {
display: flex;
flex-direction: column;
gap: 24dp;
padding: 0 32dp;
padding: 48dp 64dp;
}
@media (max-height: 800dp) {
.overlay-root {
min-height: 38%;
padding: 32dp 0 28dp 0;
}
.overlay {
gap: 16dp;
padding: 0 24dp;
padding: 32dp 48dp;
}
}
+2 -2
View File
@@ -164,10 +164,10 @@ Rml::String format_graphics_setting_value(GraphicsOption option, int value) {
u32 width = 0;
u32 height = 0;
AuroraGetRenderSize(&width, &height);
return fmt::format("{}x ({}x{})", value, width, height);
return fmt::format("{}× ({}×{})", value, width, height);
}
case GraphicsOption::ShadowResolution:
return fmt::format("{}x", value);
return fmt::format("{}×", value);
case GraphicsOption::BloomMode:
switch (static_cast<BloomMode>(value)) {
case BloomMode::Off:
+1 -1
View File
@@ -510,7 +510,7 @@ SettingsWindow::SettingsWindow() {
},
.min = 1,
.max = 8,
.prefix = "x",
.suffix = "×",
})
.on_focus([&rightPane](Rml::Event&) {
rightPane.clear();