bugfixes
This commit is contained in:
parent
90b5e13544
commit
5c08d7363d
3 changed files with 15 additions and 6 deletions
|
@ -48,6 +48,10 @@ div[class^="accountProfileCard-"] div[class^="userInfo-"] {
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
svg[class^="warningCircleIcon-"] {
|
||||||
|
position: fixed;
|
||||||
|
}
|
||||||
|
|
||||||
div[class^="profileBadges-"] {
|
div[class^="profileBadges-"] {
|
||||||
position: static;
|
position: static;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
@ -134,10 +138,13 @@ div.root-8LYsGj { // I not love fixed classes, but this selects only modal page
|
||||||
}
|
}
|
||||||
div[class^="body-"] {
|
div[class^="body-"] {
|
||||||
border: none;
|
border: none;
|
||||||
margin-left: 16px;
|
margin: 0 16px;
|
||||||
|
width: 100%;
|
||||||
height: 370px;
|
height: 370px;
|
||||||
& > *
|
& > * {
|
||||||
{ padding: 0 !important; }
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
div[class^="tabBarContainer"]
|
div[class^="tabBarContainer"]
|
||||||
{ border: none; }
|
{ border: none; }
|
||||||
|
|
|
@ -22,11 +22,12 @@ div[class^="standardSidebarView-"] {
|
||||||
scrollbar-width: thin;
|
scrollbar-width: thin;
|
||||||
overflow: auto hidden !important;
|
overflow: auto hidden !important;
|
||||||
justify-content: left;
|
justify-content: left;
|
||||||
|
width: max-content;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
|
|
||||||
& > nav {
|
& > nav {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
width: unset; // to increase size
|
width: max-content; // to increase size
|
||||||
background: var(--background-secondary); // bugfix
|
background: var(--background-secondary); // bugfix
|
||||||
& > div {
|
& > div {
|
||||||
padding-left: @rounder;
|
padding-left: @rounder;
|
||||||
|
|
|
@ -63,8 +63,9 @@ div[class^="radioBar-"] {
|
||||||
|
|
||||||
div[class^="card-"],
|
div[class^="card-"],
|
||||||
div.bd-server-card {
|
div.bd-server-card {
|
||||||
& > div[class*="header"],
|
.bd-server-header,
|
||||||
& > div[class*="Header"] {
|
& > div[class^="header-"],
|
||||||
|
& > div[class^="cardHeader"] {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0; left: 0;
|
top: 0; left: 0;
|
||||||
width: 100%; height: 100%;
|
width: 100%; height: 100%;
|
||||||
|
|
Loading…
Reference in a new issue