summaryrefslogtreecommitdiffstats
path: root/css
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2018-10-05 09:28:49 +0200
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2018-10-05 09:28:49 +0200
commit5279b43599ba418b997803b03ef2d788b30d663b (patch)
tree527c30dfdec82caa3d295badccc00148510c52e2 /css
parentd4e93558a0b160f42577fbe599da6ba1ff7da8a6 (diff)
Textarea note fixes and resize
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'css')
-rw-r--r--css/Properties/Properties.scss7
1 files changed, 6 insertions, 1 deletions
diff --git a/css/Properties/Properties.scss b/css/Properties/Properties.scss
index ba108c53..a7bc1a78 100644
--- a/css/Properties/Properties.scss
+++ b/css/Properties/Properties.scss
@@ -65,7 +65,7 @@
display: flex;
align-items: center;
padding-right: 44px;
- height: $grid-height-unit;
+ // height: $grid-height-unit;
position: relative;
}
@@ -116,5 +116,10 @@
// property value within row, after label
&__value {
flex: 1 1;
+ textarea& {
+ align-self: flex-start;
+ min-height: 2 * $grid-height-unit - 2*$grid-input-margin;
+ max-height: 5 * $grid-height-unit - 2*$grid-input-margin;
+ }
}
}