an app to share curated trails
sidetrail.app
atproto
nextjs
react
rsc
1.UserBadge {
2 display: inline-flex;
3 align-items: center;
4 gap: 0.25rem;
5 text-decoration: none;
6 color: inherit;
7 transition: opacity 0.2s ease;
8}
9
10.UserBadge:hover:not(.UserBadge--nolink) {
11 opacity: 0.7;
12}
13
14.UserBadge--nolink {
15 cursor: default;
16}
17
18.UserBadge-avatar {
19 width: 20px;
20 height: 20px;
21 border-radius: 50%;
22 object-fit: cover;
23 flex-shrink: 0;
24}
25
26.UserBadge-handle {
27 color: #555;
28 font-weight: 500;
29}