diff options
Diffstat (limited to 'src/objects/_text-field.scss')
-rw-r--r-- | src/objects/_text-field.scss | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/objects/_text-field.scss b/src/objects/_text-field.scss index 4201f00..2ea2739 100644 --- a/src/objects/_text-field.scss +++ b/src/objects/_text-field.scss | |||
@@ -78,6 +78,7 @@ | |||
78 | @include iro.bem-elem('native') { | 78 | @include iro.bem-elem('native') { |
79 | @include typography.set-font(vars.$font--main, (size: 1em, line-height: vars.$line-height)); | 79 | @include typography.set-font(vars.$font--main, (size: 1em, line-height: vars.$line-height)); |
80 | 80 | ||
81 | width: 100%; | ||
81 | color: iro.props-get(--colors --text); | 82 | color: iro.props-get(--colors --text); |
82 | resize: none; | 83 | resize: none; |
83 | 84 | ||
@@ -145,7 +146,8 @@ | |||
145 | padding: 0; | 146 | padding: 0; |
146 | 147 | ||
147 | @include iro.bem-elem('native') { | 148 | @include iro.bem-elem('native') { |
148 | padding: iro.props-get(--dims --padding-y) iro.props-get(--dims --padding-x); | 149 | box-sizing: border-box; |
150 | padding: iro.props-get(--dims --padding-y) iro.props-get(--dims --padding-x); | ||
149 | } | 151 | } |
150 | } | 152 | } |
151 | 153 | ||