We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 818b280 commit 283c324Copy full SHA for 283c324
packages/interface/src/components/interface-skeleton/style.scss
@@ -148,6 +148,13 @@ html.interface-interface-skeleton__html-container {
148
background-color: $white;
149
z-index: z-index(".interface-interface-skeleton__footer");
150
151
+ // When the navigate regions shortcut is used it applies position: relative
152
+ // to regions. The footer should always stay stuck to the bottom though, so
153
+ // override using a more specific selector with position: fixed.
154
+ .is-focusing-regions &[role="region"] {
155
+ position: fixed;
156
+ }
157
+
158
// On Mobile the footer is hidden
159
display: none;
160
@include break-medium() {
0 commit comments