Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions @app/client/src/styles/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,13 @@ body {
white-space: normal;
}

.ant-form-item .ant-form-item-label-wrap > label {
/* antd's labelWrap wraps the label text but keeps the label at a fixed
control height, so extra lines spill over adjacent fields */
height: auto;
min-height: 32px;
}

@keyframes gradient {
0% {
background-position: 0% 50%;
Expand Down
1 change: 1 addition & 0 deletions @app/components/src/EventRegistrationForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,7 @@ export const EventRegistrationForm: React.FC<EventRegistrationFormProps> = memo(
colon={false}
form={form}
initialValues={initialValues}
labelWrap
onFinish={handleSubmit}
>
<Form.Item
Expand Down
Loading