diff options
author | Zarino Zappia <mail@zarino.co.uk> | 2016-09-29 12:14:56 +0100 |
---|---|---|
committer | Matthew Somerville <matthew-github@dracos.co.uk> | 2016-10-04 10:37:53 +0100 |
commit | 68e154c90b5a0278c4ec87aa93b80947e8704630 (patch) | |
tree | ee2b8af4533b1218ce45f2ba2bbf68f7a13b3e81 /web | |
parent | 5ad5faf1160dc4be496dfdfc08a566431ac45ee8 (diff) |
Add .btn and .form-control classes to inputs
Diffstat (limited to 'web')
-rw-r--r-- | web/cobrands/sass/_base.scss | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/web/cobrands/sass/_base.scss b/web/cobrands/sass/_base.scss index 87cadefed..612d8cf55 100644 --- a/web/cobrands/sass/_base.scss +++ b/web/cobrands/sass/_base.scss @@ -246,7 +246,7 @@ textarea { textarea { line-height: 1.5em; - min-height: 8em; + min-height: 5em; } label{ @@ -285,6 +285,10 @@ label{ select.form-control { box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2); height: 2.2em; // roughly equal to default input height + + &[multiple] { + height: auto; + } } .form-section-heading { |