blob: f7414cc7f242eeefc44ac2c26de4e26bd1fddfe2 (
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
|
@import "../views/globalCssVariables";
.button-dropdown-wrapper {
position: relative;
.dropdown-button {
width: 15px;
padding-left: 5px;
padding-right: 5px;
}
.dropdown {
position: absolute;
top: 35px;
left: 0;
background-color: #323232;
color: $light-color-secondary;
border: 1px solid #4d4d4d;
border-radius: 0 6px 6px 6px;
box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.25);
min-width: 150px;
padding: 5px;
}
input {
color: black;
}
}
|