textarea.scss 569 B

123456789101112131415161718192021222324252627282930313233343536
  1. .cl-textarea {
  2. border: 1rpx solid #dcdfe6;
  3. border-radius: 8rpx;
  4. width: 100%;
  5. box-sizing: border-box;
  6. background-color: #fff;
  7. position: relative;
  8. padding: 10rpx 10rpx 10rpx 16rpx;
  9. line-height: 36rpx;
  10. textarea {
  11. font-size: 24rpx;
  12. width: 100%;
  13. box-sizing: border-box;
  14. font-size: 26rpx;
  15. }
  16. &.is-disabled {
  17. background-color: #f5f7fa;
  18. }
  19. &__count {
  20. position: absolute;
  21. right: 10rpx;
  22. bottom: 4rpx;
  23. font-size: 24rpx;
  24. letter-spacing: 1rpx;
  25. color: #999;
  26. }
  27. &.is-count {
  28. /* #ifndef MP-ALIPAY */
  29. padding-bottom: 40rpx;
  30. /* #endif */
  31. }
  32. }