* add with-theme hoc * add dark theme styles for components * add toggle theme button to the dev demo page * add info about widget themes to README
14 lines
245 B
SCSS
14 lines
245 B
SCSS
.dropdown__content {
|
|
position: absolute;
|
|
z-index: 20;
|
|
outline-width: 0;
|
|
display: none;
|
|
top: 100%;
|
|
left: 50%;
|
|
transform: translate(-50%, 5px);
|
|
width: 170px;
|
|
border: 2px solid #259c9a;
|
|
border-radius: 3px;
|
|
padding: 0 0 5px;
|
|
}
|