Browse Source

#2744 Fixes issue with fluid container overflow

pull/2755/head
jlukic 9 years ago
parent
commit
7b2a696cae
2 changed files with 2 additions and 1 deletions
  1. 1
      RELEASE-NOTES.md
  2. 2
      src/definitions/elements/container.less

1
RELEASE-NOTES.md

@ -9,6 +9,7 @@
- **Menu** - `text menu` now uses padding for hitboxes to make target area for links larger
**[Reported Bugs](https://github.com/Semantic-Org/Semantic-UI/issues?q=is%3Aissue+milestone%3A2.1.0+is%3Aclosed)**
- **Container** - Fix issue with `fluid container` being `100% + gutter` at mobile resolution (causing overflow)
- **Modal** - Fix autofocus setting in modal not working due to improper selector #2737
- **Modal** - Increased `close` specificity, modal will now only close on `> .close` #2736

2
src/definitions/elements/container.less

@ -31,7 +31,7 @@
/* Mobile */
@media only screen and (max-width: @largestMobileScreen) {
.ui.container {
width: @mobileWidth;
width: @mobileWidth !important;
margin-left: @mobileGutter !important;
margin-right: @mobileGutter !important;
}

Loading…
Cancel
Save