summaryrefslogtreecommitdiffstats
path: root/src/styles
diff options
context:
space:
mode:
authorHumberto Alfonso Díaz <humberto.alfonso@asvito.es>2019-09-24 12:33:20 +0200
committerLorenzo Tilve <ltilve@igalia.com>2020-02-04 19:20:13 +0100
commitbbd85c7d2dd79b2b70e70e3a824ac831bb25007b (patch)
treee4dcb4db2e90f305d9f55049753601a555f41cac /src/styles
parent2de1c21023be0d1518d3d2ac663d00a7c20c8944 (diff)
FUNCT Add screen navigation support
Diffstat (limited to 'src/styles')
-rw-r--r--src/styles/main.scss17
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 {