-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExportDropdown.css
More file actions
50 lines (45 loc) · 937 Bytes
/
ExportDropdown.css
File metadata and controls
50 lines (45 loc) · 937 Bytes
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
.export-dropdown {
position: absolute;
top: calc(100% + 8px);
right: 0;
min-width: 180px;
background-color: #ffffff;
border: 1px solid #F0F0F0;
border-radius: 8px;
box-shadow: 0px 0px 1px 0px #00000033, 0px 8px 24px -6px #00000014;
z-index: 1000;
overflow: hidden;
font-family: 'DM Sans', sans-serif;
}
/* Add left: 0px for screens less than or equal to 700px */
@media (max-width: 700px) {
.export-dropdown {
left: 0px;
}
}
.export-dropdown-content {
padding: 8px 0;
}
.export-option {
display: flex;
align-items: center;
width: 100%;
padding: 12px 16px;
background: none;
border: none;
cursor: pointer;
gap: 12px;
transition: background-color 0.2s ease;
font-family: 'DM Sans', sans-serif;
font-size: 14px;
font-weight: 500;
text-align: left;
}
.export-option:hover {
background-color: #f5f5f5;
}
.export-icon {
font-size: 16px;
width: 20px;
text-align: center;
}