- commit
- dc5f454f84af6bc6731296069021163e13ab4ad1
- parent
- 88cc86cc467447b923f0f60944ce45b5571c00b6
- Author
- Tobias Bengfort <tobias.bengfort@posteo.de>
- Date
- 2020-10-18 07:49
rm mfbs dependency
Diffstat
| M | package.json | 3 | +-- |
| M | scss/base.scss | 5 | +++++ |
| M | scss/layout.scss | 1 | + |
| M | scss/style.scss | 5 | +---- |
4 files changed, 8 insertions, 6 deletions
diff --git a/package.json b/package.json
@@ -2,8 +2,7 @@ 2 2 "name": "voterunner", 3 3 "version": "0.0.1", 4 4 "devDependencies": {5 -1 "preact": "^10.5.4",6 -1 "mfbs": "^4.0.0"-1 5 "preact": "^10.5.4" 7 6 }, 8 7 "author": "Tobias Bengfort", 9 8 "license": "AGPL-3+"
diff --git a/scss/base.scss b/scss/base.scss
@@ -1,3 +1,7 @@
-1 1 * {
-1 2 box-sizing: border-box;
-1 3 }
-1 4
1 5 input[type="text"],
2 6 textarea {
3 7 background-color: $color-bg;
@@ -6,6 +10,7 @@ textarea {
6 10 textarea {
7 11 font-family: inherit;
8 12 font-size: inherit;
-1 13 resize: vertical;
9 14 }
10 15
11 16 @media screen {
diff --git a/scss/layout.scss b/scss/layout.scss
@@ -5,6 +5,7 @@ html {
5 5
6 6 body {
7 7 margin: 0 auto;
-1 8 padding: 0 $padding;
8 9 position: relative;
9 10
10 11 > div {
diff --git a/scss/style.scss b/scss/style.scss
@@ -6,10 +6,7 @@ $color-bg-tint: mix($color-link, $color-bg, 25%); 6 6 $color-border: #c0c0c0; 7 7 8 8 $padding: 0.4em;9 -110 -1 @import '../node_modules/mfbs/sass/variables';11 -1 @import '../node_modules/mfbs/sass/base';12 -1 @import '../node_modules/mfbs/sass/layout';-1 9 $spacer: 1.5em; 13 10 14 11 @import 'base'; 15 12 @import 'layout';