优化多个页面样式与展示文本

This commit is contained in:
2025-12-09 18:01:12 +08:00
parent 2f61856ff6
commit a7f4556d9d
9 changed files with 57 additions and 54 deletions

View File

@@ -246,7 +246,7 @@ const FormFields = memo(() => {
</FormLabel>
<FormLabel htmlFor={`${id}-v-space`} className="px-3 h-10 border rounded-md flex items-center text-sm">
<RadioGroupItem value="9" id={`${id}-v-space`} className="mr-2"/>
<span> ( \t )</span>
<span> (\t)</span>
</FormLabel>
</RadioGroup>
)}
@@ -261,15 +261,15 @@ const FormFields = memo(() => {
className="grid grid-cols-2 md:grid-cols-3 gap-4">
<FormLabel htmlFor={`${id}-v-newline2`} className="px-3 h-10 border rounded-md flex items-center text-sm">
<RadioGroupItem value="13,10" id={`${id}-v-newline2`} className="mr-2"/>
<span> ( \r\n )</span>
<span> (\r\n)</span>
</FormLabel>
<FormLabel htmlFor={`${id}-v-newline`} className="px-3 h-10 border rounded-md flex items-center text-sm">
<RadioGroupItem value="10" id={`${id}-v-newline`} className="mr-2"/>
<span> ( \n )</span>
<span> (\n)</span>
</FormLabel>
<FormLabel htmlFor={`${id}-v-newline3`} className="px-3 h-10 border rounded-md flex items-center text-sm">
<RadioGroupItem value="13" id={`${id}-v-newline3`} className="mr-2"/>
<span> ( \r )</span>
<span> (\r)</span>
</FormLabel>
</RadioGroup>
)}