[bugfix] Main Page: LanguageSelector: Go back button: add min width for prevent to shrink its width too much.

Config Page: SidebarSection: to not scroll x axis even if its label overflowed.
This commit is contained in:
Sakamoto Shiina
2025-03-15 15:06:50 +09:00
parent fec499cfad
commit fa2c851c5b
2 changed files with 9 additions and 1 deletions

View File

@@ -9,6 +9,7 @@
flex-direction: column;
justify-content: space-between;
overflow-y: auto;
// overflow-x: hidden;
height: 100%;
max-height: 60rem;
}
@@ -59,7 +60,9 @@
}
.tab_text {
overflow: hidden;
font-size: 1.6rem;
text-overflow: ellipsis;
}
.separated_tabs_wrapper {

View File

@@ -16,7 +16,12 @@
position: absolute;
left: 0;
background-color: var(--dark_800_color);
padding: 1.2rem;
padding: 0 2rem 0 1.6rem;
height: 100%;
min-width: 8rem;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
&:hover{
background-color: var(--dark_750_color);