[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:
@@ -9,6 +9,7 @@
|
|||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
|
// overflow-x: hidden;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
max-height: 60rem;
|
max-height: 60rem;
|
||||||
}
|
}
|
||||||
@@ -59,7 +60,9 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.tab_text {
|
.tab_text {
|
||||||
|
overflow: hidden;
|
||||||
font-size: 1.6rem;
|
font-size: 1.6rem;
|
||||||
|
text-overflow: ellipsis;
|
||||||
}
|
}
|
||||||
|
|
||||||
.separated_tabs_wrapper {
|
.separated_tabs_wrapper {
|
||||||
|
|||||||
@@ -16,7 +16,12 @@
|
|||||||
position: absolute;
|
position: absolute;
|
||||||
left: 0;
|
left: 0;
|
||||||
background-color: var(--dark_800_color);
|
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;
|
cursor: pointer;
|
||||||
&:hover{
|
&:hover{
|
||||||
background-color: var(--dark_750_color);
|
background-color: var(--dark_750_color);
|
||||||
|
|||||||
Reference in New Issue
Block a user