diff options
Diffstat (limited to 'src/styles/main.scss')
-rw-r--r-- | src/styles/main.scss | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/src/styles/main.scss b/src/styles/main.scss index 22dd899..518bdc2 100644 --- a/src/styles/main.scss +++ b/src/styles/main.scss @@ -50,13 +50,17 @@ body { } } - .content { + .page { display: flex; flex-direction: column; flex-wrap: wrap; justify-content: center; height: 100%; + &.hide { + display: none; + } + .header { text-align: center; margin: 0; @@ -97,6 +101,17 @@ body { } } } + + .confirm { + position: absolute; + bottom: 5%; + text-align: center; + height: 120px; + line-height: 120px; + width: 90%; + background: map-get($colors, primary); + border-radius: 20px; + } } .log { |