Skip to content

Commit

Permalink
Fix border top on fixed bottom
Browse files Browse the repository at this point in the history
  • Loading branch information
jlukic committed Jul 6, 2015
1 parent 6e2938b commit 8d4b0f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions RELEASE-NOTES.md
Expand Up @@ -22,6 +22,7 @@
- **Modal** - `scrolling modal` now correctly inherits rules so that it appears at top of screen on mobile
- **Menu** - Inverted menu no longer includes a 1px transparent border.
- **Menu** - Fixes `compact vertical menu` using `flex` style incorrectly
- **Menu** - Fixes `border-top` not appearing on `bottom fixed` menu
- **Tab** - Fixed bug where remote loaded tab content would not show `loading tab` on first load.

**Docs**
Expand Down
2 changes: 1 addition & 1 deletion src/definitions/collections/menu.less
Expand Up @@ -1626,13 +1626,13 @@ Floated Menu / Item

.ui.fixed.menu,
.ui[class*="top fixed"].menu {
border-top: none;
top: 0px;
left: 0px;
right: auto;
bottom: auto;
}
.ui[class*="top fixed"].menu {
border-top: none;
border-left: none;
border-right: none;
}
Expand Down

0 comments on commit 8d4b0f2

Please sign in to comment.