-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
40 lines (33 loc) · 813 Bytes
/
styles.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
/* App name */
.app-name {
display: block;
margin-bottom: 10px;
text-align: center;
}
/* Version selector container */
.version-selector {
display: inline-flex;
align-items: center;
justify-content: center;
margin: 15px auto 10px auto;
}
/* Version selector label */
.version-selector-label {
margin-right: 10px;
}
/* Version selector dropdown */
.version-selector select {
font-size: 14px;
padding: 4px 8px;
color: #444;
background-color: #f9f9f9;
border: 1px solid #ddd;
cursor: pointer;
border-radius: 2px;
max-width: 200px; /* Adjust the maximum width of the dropdown to your preference */
width: 100%;
}
.version-selector select:focus {
outline: none;
border-color: var(--selection-color);
}