blob: f3f8ead1f241c71d26ad733f83995f6735d6a9f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
.fullProfile {
border-radius: 8px;
margin: 16px;
padding: 16px;
border: 1px solid #23f4;
background: #e6eaff44;
.basicInfo {
display: grid;
grid-template-columns: max-content 1fr max-content;
gap: 16px;
img.avatar {
width: 96px;
aspect-ratio: 1;
}
.displayName {
font-size: 16pt;
font-weight: bold;
}
.handle,
.joinedDate {
font-size: 10pt;
}
}
.followInfo {
display: grid;
justify-content: right;
align-items: baseline;
grid-auto-flow: column;
gap: 16px;
}
}
|