Support even smaller screens

This commit is contained in:
asonix 2020-06-28 12:18:08 -05:00
parent 652ab6ac42
commit d9ab1b8a76
3 changed files with 16 additions and 3 deletions

4
Cargo.lock generated
View File

@ -1229,9 +1229,9 @@ dependencies = [
[[package]] [[package]]
name = "http-signature-normalization-actix" name = "http-signature-normalization-actix"
version = "0.3.0-alpha.12" version = "0.4.0-alpha.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "60a0614ef2d44d570f78932a25cfa6975fa41d1f06f12c4b338e3f1ee1e3b6ab" checksum = "09afff6987c7edbed101d1cddd2185786fb0af0dd9c06b654aca73a0a763680f"
dependencies = [ dependencies = [
"actix-http", "actix-http",
"actix-web", "actix-web",

View File

@ -31,7 +31,7 @@ deadpool-postgres = "0.5.5"
dotenv = "0.15.0" dotenv = "0.15.0"
env_logger = "0.7.1" env_logger = "0.7.1"
futures = "0.3.4" futures = "0.3.4"
http-signature-normalization-actix = { version = "=0.3.0-alpha.12", default-features = false, features = ["sha-2"] } http-signature-normalization-actix = { version = "0.4.0-alpha.0", default-features = false, features = ["sha-2"] }
log = "0.4" log = "0.4"
lru = "0.5.1" lru = "0.5.1"
mime = "0.3.16" mime = "0.3.16"

View File

@ -80,6 +80,8 @@ section {
} }
a { a {
transition: color .2s cubic-bezier(.3,0,.5,1);
&, &,
&:focus, &:focus,
&:active { &:active {
@ -238,3 +240,14 @@ footer {
} }
} }
} }
@media(max-width: 360px) {
.admin {
flex-direction: column;
}
.right {
margin: 16px;
margin-top: 0;
}
}