fix(subplebbit): state string should wrap next to sidebar

This commit is contained in:
plebeius.eth
2023-12-11 21:22:14 +01:00
parent 960a2ead2f
commit 4f07474f70
2 changed files with 17 additions and 1 deletions

View File

@@ -4,11 +4,16 @@
.stateString {
text-transform: lowercase;
max-width: calc(100% - 305px);
}
@media (max-width: 768px) {
.sidebar {
display: none;
}
}
@media (min-width: 768px) {
.stateString {
max-width: calc(100% - 305px);
}
}

View File

@@ -6,8 +6,19 @@ div[data-viewport-type="window"] {
position: relative !important;
}
.stateString {
text-transform: lowercase;
}
@media (max-width: 768px) {
.sidebar {
display: none;
}
}
@media (min-width: 768px) {
.stateString {
max-width: calc(100% - 305px);
}
}