mirror of
https://github.com/penpot/penpot.git
synced 2025-01-24 15:39:50 -05:00
32 lines
551 B
SCSS
32 lines
551 B
SCSS
.dropdown {
|
|
position: absolute;
|
|
max-height: 30rem;
|
|
background-color: $color-white;
|
|
border-radius: 4px;
|
|
box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.25);
|
|
z-index: 12;
|
|
|
|
hr {
|
|
margin: 0 !important;
|
|
border-color: $color-gray-10;
|
|
}
|
|
|
|
li {
|
|
display: flex;
|
|
align-items: center;
|
|
color: $color-gray-60;
|
|
cursor: pointer;
|
|
font-size: $fs14;
|
|
height: 40px;
|
|
padding: 5px 16px;
|
|
|
|
&.title {
|
|
font-weight: 600;
|
|
cursor: default;
|
|
}
|
|
|
|
&:hover {
|
|
background-color: $color-primary-lighter;
|
|
}
|
|
}
|
|
}
|