Files
ionic-framework/core/src/components/textarea/textarea.ios.vars.scss
Brandy Carney 7a8d5f68d2 chore(stylelint): remove sass-lint/scss-lint in favor of stylelint
- remove scss-lint and sass-lint
- add stylelint and stylelint-order packages and configuration
- update all *.scss files to new syntax

fixes #14805
2018-07-19 15:10:30 -05:00

30 lines
1.1 KiB
SCSS

@import "../../themes/ionic.globals.ios";
@import "../item/item.ios.vars";
// iOS Textarea
// --------------------------------------------------
/// @prop - Margin start of the textarea when it is after a label
$textarea-ios-by-label-margin-start: $item-ios-padding-start !default;
/// @prop - Font family of the textarea
$textarea-ios-font-family: $font-family-base !default;
/// @prop - Font size of the textarea
$textarea-ios-font-size: inherit !default;
/// @prop - Margin top of the textarea
$textarea-ios-padding-top: $item-ios-padding-top !default;
/// @prop - Margin end of the textarea
$textarea-ios-padding-end: ($item-ios-padding-end / 2) !default;
/// @prop - Margin bottom of the textarea
$textarea-ios-padding-bottom: $item-ios-padding-bottom !default;
/// @prop - Margin start of the textarea
$textarea-ios-padding-start: 0 !default;
/// @prop - Placeholder text color of the textarea
$textarea-ios-placeholder-color: $placeholder-text-color !default;