gaf-mobile
Version:
GAF mobile Web site
25 lines (21 loc) • 459 B
text/less
@import (reference) '../libs/mixins';
@import (reference) '../themes/variables';
/**
* Dropdown
*
* A Generic Dropdown that can containt information and be displayed on click
*
* Markup: dropdown.html
*
* Styleguide 13
*/
.Dropdown {
display: none;
padding: 24px;
border-radius: @border-radius;
background: @body-bg;
box-shadow: 0 0 4px 0 fadeout(@septenary-color-xxxdark, 70%);
&.is-shown {
display: block;
}
}