Files
mini-programs/src/components/TitleTextarea/index.scss
2025-08-23 21:39:46 +08:00

34 lines
681 B
SCSS

.title-input-wrapper {
position: relative;
width: 100%;
display: flex;
align-items: flex-start;
justify-content: space-around;
.title-input {
width: 83%;
min-height: 44px;
padding: 12px 16px;
border-radius: 8px;
font-size: 16px;
line-height: 1.4;
background: #fff;
box-sizing: border-box;
resize: none;
}
// 使用 placeholderClass 来控制 placeholder 样式
.title-input-placeholder {
color: rgba(60, 60, 67, 0.60) !important;
font-size: 16px !important;
font-weight: normal !important;
}
.char-count {
font-size: 12px;
color: #999;
pointer-events: none;
padding-top: 12px;
}
}