We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47b8e5a commit aa92f02Copy full SHA for aa92f02
components/input/style/index.tsx
@@ -180,12 +180,7 @@ export const genBasicInputStyle = (token: InputToken): CSSObject => ({
180
lineHeight: token.lineHeight,
181
verticalAlign: 'bottom',
182
transition: `all ${token.motionDurationSlow}, height 0s`,
183
- },
184
-
185
- '&-textarea': {
186
- '&-rtl': {
187
- direction: 'rtl',
188
+ resize: 'vertical',
189
},
190
191
// Size
@@ -196,9 +191,14 @@ export const genBasicInputStyle = (token: InputToken): CSSObject => ({
196
...genInputSmallStyle(token),
197
192
198
193
194
+ // RTL
199
195
'&-rtl': {
200
direction: 'rtl',
201
+
+ '&-textarea-rtl': {
+ direction: 'rtl',
+ },
202
});
203
204
export const genInputGroupStyle = (token: InputToken): CSSObject => {
0 commit comments