fix: 修复 textarea 组件同时使用 auto-height 和 no-border 属性时,no-border 属性不生效 (#448)

This commit is contained in:
dargonc 2024-07-18 16:33:50 +08:00 committed by GitHub
parent ecf03c3807
commit a2f4b322f5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -268,12 +268,6 @@
}
}
@include when(no-border) {
&::after {
display: none;
}
}
@include when(auto-height) {
&:not(.is-cell) {
padding: 5px 0;
@ -284,6 +278,12 @@
}
}
@include when(no-border) {
&::after {
display: none;
}
}
@include when(cell) {
display: flex;
line-height: $-cell-line-height;