-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
57 lines (46 loc) · 1.38 KB
/
style.css
File metadata and controls
57 lines (46 loc) · 1.38 KB
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
.main-container {
padding: 50px 30px;
}
.chart-header-container {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0px 32px 30px;
width: 900px;
}
.chart-title {
margin: 0;
padding: 0;
font-size: 45px;
font-family: 'aptly';
font-weight: 500;
font-size: 3.5em;
}
.select2-container {
width: 30% !important; /* Force the select2 container to take the full width */
font-family: 'adelle-sans-condensed';
}
.select2-container .select2-selection--single {
height: 30px; /* Or your desired height */
line-height: 30px; /* This should match the height for vertical centering */
}
.select2-container .select2-selection--single .select2-selection__rendered {
padding-left: 10px; /* Adjust left padding as needed */
padding-right: 0px; /* Increase right padding to avoid overlap with the arrow */
}
.select2-container .select2-selection--single .select2-selection__clear {
position: relative;
right: 25px; /* Adjust the position of the clear button if needed */
z-index: 1; /* Ensure it's above other elements */
}
.select2-container .select2-dropdown {
border-color: #ccc !important;
}
#canvas-container {
position: relative;
width: 900px;
}
#countrySelect {
width: auto; /* Let Select2 control the width or set to '100%' if you want it to fill the container */
z-index: 10;
}