mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
31 lines
519 B
SCSS
31 lines
519 B
SCSS
|
@import '../constants/dimensions';
|
||
|
|
||
|
.dropdown {
|
||
|
position: relative;
|
||
|
display: block;
|
||
|
height: 100%;
|
||
|
|
||
|
&.dropdown--open ul {
|
||
|
display: block;
|
||
|
}
|
||
|
|
||
|
ul {
|
||
|
position: absolute;
|
||
|
display: none;
|
||
|
z-index: 10;
|
||
|
min-width: 180px;
|
||
|
border-radius: 2px;
|
||
|
padding: 2px 0;
|
||
|
margin-top: 4px;
|
||
|
box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
|
||
|
|
||
|
a, button {
|
||
|
font-size: $font-size-md;
|
||
|
text-align: left;
|
||
|
padding: 10px $default-padding;
|
||
|
width: 100%;
|
||
|
display: block;
|
||
|
}
|
||
|
}
|
||
|
}
|