a fork of iceshrimp.net but a tweaked frontend to my personal liking. waow
fediverse social-media social iceshrimp fedi
0
fork

Configure Feed

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

[frontend/components] Fix word wrapping and improve field spacing

authored by

pancakes and committed by
Laura Hausmann
23833bb1 26d86eee

+12
+12
Iceshrimp.Frontend/Components/ProfileInfo.razor.css
··· 20 20 ::deep { 21 21 .field { 22 22 display: flex; 23 + column-gap: 0.5rem; 23 24 margin: 0.2rem 0; 24 25 25 26 .field-name { 26 27 font-weight: 600; 27 28 width: 10rem; 29 + word-wrap: break-word; 28 30 29 31 .ph { 30 32 vertical-align: text-bottom; 31 33 } 34 + } 35 + 36 + .field-value { 37 + word-wrap: break-word; 32 38 } 33 39 } 34 40 } ··· 78 84 79 85 .field-name { 80 86 width: auto; 87 + } 88 + } 89 + 90 + ::deep { 91 + .field + .field { 92 + margin-top: 0.5rem; 81 93 } 82 94 } 83 95 }