Fix: user's background placeholder height should be 100px or above

This commit is contained in:
VnPower 2023-06-02 16:28:43 +07:00
parent d99857736f
commit 41bd11c56a
Signed by: vnpower
GPG key ID: 881DE3DEB966106C
2 changed files with 14 additions and 11 deletions

View file

@ -63,11 +63,6 @@ body {
margin-left: 5px; margin-left: 5px;
} }
@media screen and (max-width: 750px) {
.search-bar {
display: none;
}
}
.artwork-thumbnail { .artwork-thumbnail {
position: relative; position: relative;
display: inline-block; display: inline-block;
@ -275,6 +270,7 @@ body {
.user-background-placeholder { .user-background-placeholder {
display: flex; display: flex;
height: 10vw; height: 10vw;
min-height: 100px;
background-color: #262a2b; background-color: #262a2b;
} }
@ -331,4 +327,10 @@ body {
background-color: #333; background-color: #333;
} }
@media screen and (max-width: 750px) {
.search-bar {
display: none;
}
}
/*# sourceMappingURL=style.css.map */ /*# sourceMappingURL=style.css.map */

View file

@ -80,12 +80,6 @@ body {
} }
} }
@media screen and (max-width: 750px) {
.search-bar {
display: none;
}
}
.artwork-thumbnail { .artwork-thumbnail {
position: relative; position: relative;
display: inline-block; display: inline-block;
@ -323,6 +317,7 @@ body {
.user-background-placeholder { .user-background-placeholder {
display: flex; display: flex;
height: 10vw; height: 10vw;
min-height: 100px;
background-color: $bg-alt; background-color: $bg-alt;
} }
@ -387,3 +382,9 @@ body {
background-color: #333; background-color: #333;
} }
} }
@media screen and (max-width: 750px) {
.search-bar {
display: none;
}
}