git ssb

10+

Matt McKegg / patchwork



Tree: 5cfee7fcb845036b63555b7546206364a1700b7a

Files: 5cfee7fcb845036b63555b7546206364a1700b7a / styles / suggest-box.mcss

757 bytesRaw
1SuggestBox {
2 width: max-content;
3 max-height: 50vh;
4 overflow-y: scroll;
5 background-color: #fff;
6 border: 1px gainsboro solid;
7
8 padding: .2rem .5rem;
9 margin-top: .35rem;
10
11 ul {
12 list-style-type: none;
13 padding: 0;
14
15 li {
16 display: flex;
17 align-items: center;
18
19 padding-right: .2rem;
20 margin-bottom: .2rem;
21
22 img {
23 height: 36px;
24 width: 36px;
25 padding: .2rem;
26 }
27
28 strong {
29 flex-grow: 1;
30 margin-left: .5rem;
31 font-weight: 300;
32 }
33
34 small {
35 font-family: monospace;
36 margin-left: .5rem;
37 padding-right: .2rem;
38 font-size: 1rem;
39 }
40 }
41
42 li.selected {
43 color: #fff;
44 background: #0caaf9;
45 }
46 }
47
48}
49

Built with git-ssb-web