friendship ended with social-app. php is my new best friend
at main 580 B view raw
1.profileMini { 2 min-width: 250px; 3 padding: 10px; 4 5 a { 6 text-decoration: none; 7 color: inherit; 8 display: grid; 9 grid-template-areas: "avatar name"; 10 grid-template-columns: 48px 1fr; 11 gap: 10px; 12 } 13 14 .avatar { 15 width: 48px; 16 height: 48px; 17 grid-area: avatar; 18 19 img { 20 object-fit: cover; 21 width: 100%; 22 height: 100%; 23 border-radius: 100%; 24 } 25 } 26 27 .name { 28 grid-area: name; 29 30 span { 31 display: block; 32 } 33 } 34 35 .displayName { 36 font-weight: bold; 37 } 38 39 .did { 40 font-size: .75em; 41 } 42}