this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Extra checks for prevent weird font size

+5 -2
+1 -1
src/components/status.css
··· 317 317 } 318 318 .status.large .content { 319 319 font-size: 150%; 320 - font-size: calc(100% + 50% / var(--content-text-weight)); 320 + font-size: min(calc(100% + 50% / var(--content-text-weight)), 150%); 321 321 } 322 322 .status.large .poll, 323 323 .status.large .actions {
+4 -1
src/components/status.jsx
··· 229 229 const unauthInteractionErrorMessage = `Sorry, your current logged-in instance can't interact with this status from another instance.`; 230 230 231 231 const textWeight = () => 232 - Math.round((spoilerText.length + htmlContentLength(content)) / 140) || 1; 232 + Math.max( 233 + Math.round((spoilerText.length + htmlContentLength(content)) / 140) || 1, 234 + 1, 235 + ); 233 236 234 237 const createdDateText = niceDateTime(createdAtDate); 235 238 const editedDateText = editedAt && niceDateTime(editedAtDate);