aboutsummaryrefslogtreecommitdiffstats
path: root/src/styles
diff options
context:
space:
mode:
Diffstat (limited to 'src/styles')
-rw-r--r--src/styles/button.scss12
-rw-r--r--src/styles/searchInput.scss16
-rw-r--r--src/styles/settings.scss22
3 files changed, 30 insertions, 20 deletions
diff --git a/src/styles/button.scss b/src/styles/button.scss
index 75d2cb1d4..8d2adbbcc 100644
--- a/src/styles/button.scss
+++ b/src/styles/button.scss
@@ -48,6 +48,18 @@
48 } 48 }
49 } 49 }
50 50
51 &.franz-form__button--warning {
52 background: $theme-brand-warning;
53
54 &:hover {
55 background: darken($theme-brand-warning, 5%);
56 }
57
58 &:active {
59 background: lighten($theme-brand-warning, 5%);
60 }
61 }
62
51 &.franz-form__button--inverted { 63 &.franz-form__button--inverted {
52 background: none; 64 background: none;
53 padding: 10px 20px; 65 padding: 10px 20px;
diff --git a/src/styles/searchInput.scss b/src/styles/searchInput.scss
index 28ff09fc4..633a31e09 100644
--- a/src/styles/searchInput.scss
+++ b/src/styles/searchInput.scss
@@ -1,4 +1,20 @@
1.search-input { 1.search-input {
2 width: 100%; 2 width: 100%;
3 height: auto; 3 height: auto;
4 display: flex;
5 align-items: center;
6 padding: 0 10px;
7 border-radius: 30px;
8 background: $theme-gray-lightest;
9 padding: 5px 10px;
10 @extend %headline;
11 color: $theme-gray-light;
12
13 input {
14 padding-left: 10px;
15 background: none;
16 border: 0;
17 flex: 1;
18 color: $theme-gray-light;
19 }
4} 20}
diff --git a/src/styles/settings.scss b/src/styles/settings.scss
index cb39717ea..2182c9b5f 100644
--- a/src/styles/settings.scss
+++ b/src/styles/settings.scss
@@ -149,26 +149,8 @@
149 } 149 }
150 } 150 }
151 151
152 .settings__search-header { 152 .search-input {
153 display: flex; 153 margin-bottom: 30px;
154 align-items: center;
155 padding: 0 10px;
156 border-radius: $theme-border-radius;
157 transition: background $theme-transition-time;
158 @extend %headline;
159 font-size: 22px;
160
161 &:hover {
162 background: darken($theme-gray-lighter, 5%);
163 }
164
165 input {
166 padding-left: 10px;
167 background: none;
168 border: 0;
169 flex: 1;
170 @extend %headline;
171 }
172 } 154 }
173 155
174 &__options { 156 &__options {