diff options
| author | shpuld <shp@cock.li> | 2019-03-02 16:57:32 +0200 |
|---|---|---|
| committer | shpuld <shp@cock.li> | 2019-03-02 16:57:32 +0200 |
| commit | 1d3b1ac934e5dacb05d227ddc1ab0cbd8e16e169 (patch) | |
| tree | d5846814e9cddb6edfb8b258f6e169314d97ef2b /src/App.scss | |
| parent | 068da3cf9f22f83da17051b8db5cde597f624fdf (diff) | |
start working on one tap notifications
Diffstat (limited to 'src/App.scss')
| -rw-r--r-- | src/App.scss | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/src/App.scss b/src/App.scss index 7c6970c1..3edc41a0 100644 --- a/src/App.scss +++ b/src/App.scss @@ -661,6 +661,28 @@ nav { border-radius: var(--inputRadius, $fallback--inputRadius); } +.mobile-notifications { + position: fixed; + width: 100vw; + height: 100vh; + top: 50px; + left: 0; + z-index: 1001; + overflow-x: hidden; + overflow-y: scroll; + transition-property: transform; + transition-duration: 0.35s; + transform: translate(0); + + .notifications { + padding: 0; + } + + &.closed { + transform: translate(100%); + } +} + @keyframes shakeError { 0% { transform: translateX(0); @@ -723,7 +745,7 @@ nav { .login-hint { text-align: center; - + @media all and (min-width: 801px) { display: none; } |
