We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e51430 commit 1ef3ed8Copy full SHA for 1ef3ed8
1 file changed
src/assets/scss/components/_table.scss
@@ -174,16 +174,25 @@ $table-card-spacer: $spacer;
174
}
175
176
177
+ .scrollable {
178
+ -webkit-overflow-scrolling: touch;
179
+ overflow-x: auto;
180
+ max-width: 100%;
181
+ }
182
+
183
.table-sticky {
184
height: var(--#{$prefix}table-sticky-header-height);
185
overflow-y: auto;
186
187
.table thead th {
188
position: -webkit-sticky;
189
position: sticky;
- left: 0;
190
top: 0;
191
z-index: calc(var(--#{$prefix}table-sticky-zindex) + 10);
192
193
+ &.sticky {
194
+ z-index: calc(var(--#{$prefix}table-sticky-zindex) + 11);
195
196
197
198
0 commit comments