mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 21:47:20 +00:00
- This if the 1st PR as part of the of the Align components in Fleet UI with design system in Figma #539 - These changes replace all the color variables in /styles/var/colors.scss with new colors and naming convention used in Figma.
36 lines
610 B
SCSS
36 lines
610 B
SCSS
.dropdown-cell {
|
|
|
|
.Select {
|
|
position: unset;
|
|
|
|
.Select-control {
|
|
height: auto;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
border: 0;
|
|
|
|
.Select-placeholder {
|
|
line-height: normal;
|
|
color: $core-fleet-black;
|
|
}
|
|
|
|
.Select-input {
|
|
height: auto;
|
|
}
|
|
}
|
|
|
|
.Select-menu-outer {
|
|
margin-top: 4px;
|
|
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
|
|
border-radius: $border-radius;
|
|
z-index: 6;
|
|
overflow: hidden;
|
|
border: 0;
|
|
width: auto;
|
|
right: 28px;
|
|
left: unset;
|
|
top: unset;
|
|
max-height: 220px;
|
|
}
|
|
}
|
|
}
|