Skip to content

Commit

Permalink
fix(dropdown): margin missing on upward dropdown
Browse files Browse the repository at this point in the history
  • Loading branch information
dutrieux authored and Sean committed Apr 12, 2019
1 parent 313012d commit 024f5d4
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/definitions/modules/dropdown.less
Original file line number Diff line number Diff line change
Expand Up @@ -1299,9 +1299,14 @@ select.ui.dropdown {
border-radius: @floatingMenuBorderRadius !important;
}
.ui.floating.dropdown > .menu {
margin-top: @floatingMenuDistance !important;
border-radius: @floatingMenuBorderRadius !important;
}
.ui:not(.upward).floating.dropdown > .menu {
margin-top: @floatingMenuDistance;
}
.ui.upward.floating.dropdown > .menu {
margin-bottom: @floatingMenuDistance;
}

/*--------------
Pointing
Expand Down

0 comments on commit 024f5d4

Please sign in to comment.