Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,13 @@ html.interface-interface-skeleton__html-container {
background-color: $white;
z-index: z-index(".interface-interface-skeleton__footer");

// When the navigate regions shortcut is used it applies position: relative
// to regions. The footer should always stay stuck to the bottom though, so
// override using a more specific selector with position: fixed.
.is-focusing-regions &[role="region"] {
position: fixed;
}

// On Mobile the footer is hidden
display: none;
@include break-medium() {
Expand Down