Commit 979ce4fd authored by ddcat1115's avatar ddcat1115

update style

parent f97fd541
......@@ -91,7 +91,7 @@ export default class BasicForms extends PureComponent {
required: true, message: '请输入目标描述',
}],
})(
<TextArea placeholder="请输入你的阶段性工作目标" rows={4} />
<TextArea style={{ minHeight: 32 }} placeholder="请输入你的阶段性工作目标" rows={4} />
)}
</FormItem>
<FormItem
......@@ -103,7 +103,7 @@ export default class BasicForms extends PureComponent {
required: true, message: '请输入衡量标准',
}],
})(
<TextArea placeholder="请输入衡量标准" rows={4} />
<TextArea style={{ minHeight: 32 }} placeholder="请输入衡量标准" rows={4} />
)}
</FormItem>
<FormItem
......@@ -150,7 +150,7 @@ export default class BasicForms extends PureComponent {
{getFieldDecorator('public', {
initialValue: '1',
})(
<Radio.Group>
<Radio.Group className={styles.radioGroup}>
<Radio value="1">公开</Radio>
<Radio value="2">部分公开</Radio>
<Radio value="3">不公开</Radio>
......
......@@ -88,3 +88,11 @@
color: @text-color-secondary;
font-style: normal;
}
.radioGroup {
:global {
.ant-radio-wrapper {
margin-right: 16px;
}
}
}
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment