[Glitch] Profile redesign: Profile fields overflow

Port e8f4896b08ca5f67911eb62f801afc976b4c2183 to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
This commit is contained in:
Echo 2026-04-01 16:01:22 +02:00 committed by Claire
parent 6644fcf0b6
commit 3264c285dc
4 changed files with 12 additions and 1 deletions

View File

@ -210,7 +210,7 @@ export const EditFieldModal = forwardRef<
const labelStatus = checkField(newLabel);
const valueStatus = checkField(newValue);
if (labelStatus || valueStatus) {
if (labelStatus?.variant === 'error' || valueStatus?.variant === 'error') {
setFieldStatuses({
label: labelStatus ?? undefined,
value: valueStatus ?? undefined,

View File

@ -182,6 +182,11 @@
// Field component
.fieldName,
.fieldValue {
word-break: break-all;
}
.fieldName {
color: var(--color-text-secondary);
font-size: 13px;

View File

@ -28,6 +28,7 @@ export const AccountFieldModal: FC<{
as='h2'
htmlString={field.name_emojified}
onElement={handleLabelElement}
className={classes.fieldName}
/>
<EmojiHTML
as='p'

View File

@ -20,6 +20,11 @@
outline-offset: 2px;
}
.fieldName,
.fieldValue {
word-break: break-all;
}
.fieldValue {
color: var(--color-text-primary);
font-weight: 600;