[Update] UI: Add flex-shrink 0 to download button and dropdown menu styles for better layout control.

This commit is contained in:
Sakamoto Shiina
2025-12-08 13:04:28 +09:00
parent 318736553f
commit 5030c88eea
2 changed files with 3 additions and 0 deletions

View File

@@ -6,6 +6,7 @@
justify-content: center; justify-content: center;
width: 100%; width: 100%;
max-width: 8rem; max-width: 8rem;
flex-shrink: 0;
} }
.download_button { .download_button {

View File

@@ -4,6 +4,7 @@
display: flex; display: flex;
flex-direction: row; flex-direction: row;
gap: 2.8rem; gap: 2.8rem;
flex-shrink: 0;
} }
.each_dropdown_menu_wrapper { .each_dropdown_menu_wrapper {
@@ -12,6 +13,7 @@
gap: 0.6rem; gap: 0.6rem;
white-space: nowrap; white-space: nowrap;
max-width: 24rem; max-width: 24rem;
flex-shrink: 0;
&.is_disabled { &.is_disabled {
pointer-events: none; pointer-events: none;
} }