social components
inlay.at
atproto
components
sdui
1.root {
2 position: absolute;
3 top: 10px;
4 right: 10px;
5 display: inline-flex;
6 border-radius: 9999px;
7 overflow: hidden;
8 border: 1px solid var(--border-10);
9 z-index: 10;
10}
11.btn {
12 padding: 3px 10px;
13 border: none;
14 cursor: pointer;
15 font-family:
16 "Rubik",
17 -apple-system,
18 sans-serif;
19 font-size: 10px;
20 font-weight: 500;
21}
22.btn[data-active="true"] {
23 background: var(--fg-0);
24 color: var(--bg-0);
25}
26.btn:not([data-active="true"]) {
27 background: transparent;
28 color: var(--fg-3);
29}