From d9ab1b8a76d721d5edc8f1e63e3ad97daa41ca3d Mon Sep 17 00:00:00 2001 From: asonix Date: Sun, 28 Jun 2020 12:18:08 -0500 Subject: [PATCH] Support even smaller screens --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- scss/index.scss | 13 +++++++++++++ 3 files changed, 16 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b7c99ed..be527a8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1229,9 +1229,9 @@ dependencies = [ [[package]] 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" -checksum = "60a0614ef2d44d570f78932a25cfa6975fa41d1f06f12c4b338e3f1ee1e3b6ab" +checksum = "09afff6987c7edbed101d1cddd2185786fb0af0dd9c06b654aca73a0a763680f" dependencies = [ "actix-http", "actix-web", diff --git a/Cargo.toml b/Cargo.toml index c2e60e3..937e4fd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -31,7 +31,7 @@ deadpool-postgres = "0.5.5" dotenv = "0.15.0" env_logger = "0.7.1" 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" lru = "0.5.1" mime = "0.3.16" diff --git a/scss/index.scss b/scss/index.scss index 68208b5..b74f98e 100644 --- a/scss/index.scss +++ b/scss/index.scss @@ -80,6 +80,8 @@ section { } a { + transition: color .2s cubic-bezier(.3,0,.5,1); + &, &:focus, &:active { @@ -238,3 +240,14 @@ footer { } } } + +@media(max-width: 360px) { + .admin { + flex-direction: column; + } + + .right { + margin: 16px; + margin-top: 0; + } +}