Files
ionic-framework/core/src/components/textarea/textarea.md.scss
Brandy Carney 38ae3620a2 fix(textarea): update label alignment for inputs and textareas (#18042)
- aligns label and textarea to baseline
- updates floating and stacked labels in items to align closer to the md spec

fixes #16187
2019-04-16 14:57:32 -04:00

24 lines
558 B
SCSS

@import "./textarea";
@import "./textarea.md.vars";
// Material Design Textarea
// --------------------------------------------------
:host {
--padding-top: #{$textarea-md-padding-top};
--padding-end: #{$textarea-md-padding-end};
--padding-bottom: #{$textarea-md-padding-bottom};
--padding-start: #{$textarea-md-padding-start};
@include margin(8px, 0, 0, 0);
font-size: $textarea-md-font-size;
}
:host-context(.item-label-stacked),
:host-context(.item-label-floating) {
--padding-top: 8px;
--padding-bottom: 8px;
--padding-start: 0;
}