From 062581ad2494b453010b0c73a12156733236d386 Mon Sep 17 00:00:00 2001 From: Benoit Alessandroni Date: Tue, 29 Sep 2020 21:23:26 +0200 Subject: [PATCH] bugfix: fixing polls scss name --- src/styles/layout/polls/_index.scss | 2 +- .../layout/polls/{_polls.scss => polls.scss} | 26 ++++++++++++++++--- 2 files changed, 23 insertions(+), 5 deletions(-) rename src/styles/layout/polls/{_polls.scss => polls.scss} (93%) diff --git a/src/styles/layout/polls/_index.scss b/src/styles/layout/polls/_index.scss index 572a53f..381e936 100644 --- a/src/styles/layout/polls/_index.scss +++ b/src/styles/layout/polls/_index.scss @@ -1 +1 @@ -@import '_polls.scss'; \ No newline at end of file +@import 'polls.scss'; \ No newline at end of file diff --git a/src/styles/layout/polls/_polls.scss b/src/styles/layout/polls/polls.scss similarity index 93% rename from src/styles/layout/polls/_polls.scss rename to src/styles/layout/polls/polls.scss index 8468ad4..8fccbf9 100644 --- a/src/styles/layout/polls/_polls.scss +++ b/src/styles/layout/polls/polls.scss @@ -12,7 +12,7 @@ solid-poll > div { margin: auto; .headline { h2 { - margin: 0 40px; + margin: 0 20px; font-family: "RefrigeratorDelxW01Bold"; font-size: 2.4rem; line-height: 3.8rem; @@ -373,9 +373,9 @@ solid-poll > div { background-color: #f0f3f6;; } #circles-add-survey, #default-add-survey { - background-color: white; - padding: 50px 0; - margin: -20px auto; + background-color: white; + padding: 50px 0; + margin: -20px auto; h2 { font-family: "RefrigeratorDelxW01Bold"; font-size: 3.2rem; @@ -505,6 +505,24 @@ solid-poll > div { text-transform: uppercase; } } + .poll-footer { + .back-to-list { + background-color: #3A3A3A; + padding: 5px 25px; + font-size: 1.4rem; + margin-left: 10%; + border-radius: 15px; + color: white; + &::before { + font-family: "Material Design Icons"; + font-weight: 400; + font-size: 20px; + vertical-align: middle; + color: white; + content: "\F04D"; + } + } + } } }