aboutsummaryrefslogtreecommitdiff
path: root/src/components/PluginSettings/contributorModal.css
blob: a8af8c8b83b323d98c3690f66435e9cd3ae55d2b (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
.vc-author-modal-root {
    padding: 1em;
}

.vc-author-modal-header {
    display: flex;
    align-items: center;
    margin-bottom: 1em;
}

.vc-author-modal-name {
    text-transform: none;
    flex-grow: 0;
    background: var(--background-tertiary);
    border-radius: 0 9999px 9999px 0;
    padding: 6px 0.8em 6px 0.5em;
    font-size: 20px;
    height: 20px;
    position: relative;
}

.vc-author-modal-name::before {
    content: "";
    display: block;
    position: absolute;
    height: 100%;
    width: 16px;
    background: var(--background-tertiary);
    z-index: -1;
    left: -16px;
    top: 0;
}

.vc-author-modal-avatar {
    height: 32px;
    width: 32px;
    border-radius: 50%;
}

.vc-author-modal-links {
    margin-left: auto;
    display: flex;
    gap: 0.2em;
}

.vc-author-modal-links img {
    height: 32px;
    width: 32px;
    border-radius: 50%;
    border: 4px solid var(--background-tertiary);
    box-sizing: border-box
}

.vc-author-modal-plugins {
    display: grid;
    gap: 0.5em;
}