From 2b66d13ea15e9f788b0b4ea2de8b08679304b70b Mon Sep 17 00:00:00 2001 From: Gimle Larpes Date: Fri, 25 Jul 2025 02:15:41 +0200 Subject: [PATCH] prevent overflow on small displays --- src/app/features/settings/general/General.tsx | 176 +++++++++--------- 1 file changed, 89 insertions(+), 87 deletions(-) diff --git a/src/app/features/settings/general/General.tsx b/src/app/features/settings/general/General.tsx index 24278802..ed11ec4d 100644 --- a/src/app/features/settings/general/General.tsx +++ b/src/app/features/settings/general/General.tsx @@ -371,112 +371,114 @@ function DateHint({ hasChanges, handleReset }: DateHintProps) { escapeDeactivates: stopPropagation, }} > - +
Formatting
- -
- Year -
- - - YY - - {': '} - Two-digit year - {' '} - - - YYYY - - {': '}Four-digit year + + +
+ Year +
+ + + YY + + {': '} + Two-digit year + {' '} -
+ + YYYY + + {': '}Four-digit year + + +
- - -
- Month -
- - - M - - {': '}The month + +
+ Month +
+ + + M + + {': '}The month + -
- - MM - - {': '}Two-digit month - {' '} - - - MMM - - {': '}Short month name + + MM + + {': '}Two-digit month + {' '} - - - MMMM - - {': '}Full month name + + MMM + + {': '}Short month name + - + + MMMM + + {': '}Full month name + + +
- - -
- Day of the Month -
- - - D - - {': '}Day of the month + +
+ Day of the Month +
+ + + D + + {': '}Day of the month + -
- - DD - - {': '}Two-digit day of the month + + DD + + {': '}Two-digit day of the month + - +
- - -
- Day of the Week -
- - - d - - {': '}Day of the week (Sunday = 0) + +
+ Day of the Week +
+ + + d + + {': '}Day of the week (Sunday = 0) + -
- - dd - - {': '}Two-letter day name + + dd + + {': '}Two-letter day name + - - - ddd - - {': '}Short day name + + ddd + + {': '}Short day name + - - - dddd - - {': '}Full day name + + dddd + + {': '}Full day name + - +