-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.css
54 lines (44 loc) · 803 Bytes
/
popup.css
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
#content {
display: grid;
grid-template-columns: 1fr 180px 65px;
gap: 1px 0;
background-color: #bbb;
width: 500px;
}
#content div {
background-color: #fff;
padding: 5px 2px;
}
#content > #clear-button-container {
grid-area: 1 / 1 / 1 / -1;
text-align: end;
}
#content > #search-container {
display: contents;
}
#content > #no-data-placeholder {
grid-area: 3 / 1 / 3 / -1;
text-align: center;
font-size: 15px;
font-weight: bold;
}
#search-container input {
width: 100%;
box-sizing: border-box;
}
#content > #token-table {
display: contents;
}
.url-column {
overflow-wrap: anywhere;
}
.copy-button {
width: 100%;
}
.token {
width: 100%;
box-sizing: border-box;
}
.token::-webkit-scrollbar {
display: none;
}