Fix wrapping on long server names

This commit is contained in:
jude 2023-07-23 16:28:27 +01:00
parent 5671fd462b
commit 58c778632e
3 changed files with 18 additions and 2 deletions

2
Cargo.lock generated
View File

@ -2217,7 +2217,7 @@ checksum = "436b050e76ed2903236f032a59761c1eb99e1b0aead2c257922771dab1fc8c78"
[[package]] [[package]]
name = "reminder-rs" name = "reminder-rs"
version = "1.6.22" version = "1.6.23"
dependencies = [ dependencies = [
"base64 0.21.2", "base64 0.21.2",
"chrono", "chrono",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "reminder-rs" name = "reminder-rs"
version = "1.6.22" version = "1.6.23"
authors = ["Jude Southworth <judesouthworth@pm.me>"] authors = ["Jude Southworth <judesouthworth@pm.me>"]
edition = "2021" edition = "2021"
license = "AGPL-3.0 only" license = "AGPL-3.0 only"

View File

@ -234,6 +234,16 @@ div#pageNavbar a {
text-align: center; text-align: center;
} }
.navbar-burger {
flex-shrink: 0;
}
.navbar-item.pageTitle {
flex-shrink: 1;
text-wrap: nowrap;
overflow: hidden;
}
.navbar-burger, .navbar-burger:active, .navbar-burger.is-active { .navbar-burger, .navbar-burger:active, .navbar-burger.is-active {
background-color: #adc99c !important; background-color: #adc99c !important;
border-radius: 14px; border-radius: 14px;
@ -582,6 +592,12 @@ input.default-width {
width: 100%; width: 100%;
margin: 4px; margin: 4px;
} }
p.title.pageTitle {
visibility: hidden;
text-wrap: nowrap;
overflow: hidden;
}
} }
@media only screen and (max-width: 768px) { @media only screen and (max-width: 768px) {