Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CHANGELOG-1.x.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# 1.10.2 (2021)

- [](https://github.com/patternfly/patternfly-elements/commit/) fix: Jump links parseInt for IE11
- [](https://github.com/patternfly/patternfly-elements/commit/) fix: pfe-band region overflow
- [5f88c39](https://github.com/patternfly/patternfly-elements/commit/5f88c3963f8a6c13a9aeba6e9f664678453d46ce) fix: Jump links parseInt for IE11

# 1.10.1 (2021-07-12)

Expand Down
11 changes: 8 additions & 3 deletions elements/pfe-band/src/pfe-band.scss
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,6 @@ $LOCAL-VARIABLES: (
gutter--horizontal: calc(#{pfe-var(container-spacer)} * 3),

// Band width logic
// Initialize at mobile breakpoint
Width: auto,
Width__aside--sm: 240px,
Width__aside--lg: 300px,
);
Expand Down Expand Up @@ -200,7 +198,7 @@ $regions-grid: (
@supports (display: grid) {
display: grid;
grid-template-rows: auto;
grid-template-columns: auto;
grid-template-columns: 100%;

grid-template-areas: "body";

Expand Down Expand Up @@ -339,6 +337,13 @@ slot[name="pfe-band--aside"] {
// Fallback margins if grid is not used
margin-bottom: pfe-local(gutter--vertical, $region: $section);
margin-right: pfe-local(gutter--vertical, $region: $section);
// Prevents page overflow when region content increases
max-width: inherit;

// Enforce container limits
@include browser-query(ie11) {
width: 100%;
}

// Apply the grid layout
@supports (display: grid) {
Expand Down
Loading