selfhostable, read-only reddit client
16
fork

Configure Feed

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

Fix `border-radius` on larger screen sizes

+13
+13
src/public/styles.css
··· 362 362 } 363 363 364 364 @media (min-width: 768px) { 365 + :root { 366 + --border-radius-card: 2vmin; 367 + --border-radius-media: 1vmin; 368 + --border-radius-preview: 0.5vmin; 369 + } 365 370 .post, .comments-container, .hero, .header, .footer { 366 371 flex: 1 1 90%; 367 372 width: 90%; ··· 404 409 } 405 410 406 411 @media (min-width: 1080px) { 412 + :root { 413 + --border-radius-card: 1vmin; 414 + --border-radius-media: 1vmin; 415 + } 407 416 .post, .comments-container, .hero, .header, .footer { 408 417 flex: 1 1 60%; 409 418 width: 60%; ··· 450 459 } 451 460 452 461 @media (min-width: 2560px) { 462 + :root { 463 + --border-radius-card: 0.75vmin; 464 + --border-radius-media: 0.75vmin; 465 + } 453 466 .post, .comments-container, .hero, .header, .footer { 454 467 flex: 1 1 40%; 455 468 width: 40%;