19 lines
407 B
SCSS
19 lines
407 B
SCSS
/** @format */
|
|
|
|
.woocommerce-report-table__scroll-point {
|
|
position: relative;
|
|
top: -#{$adminbar-height + $gap};
|
|
|
|
@include breakpoint( '<782px' ) {
|
|
top: -#{$adminbar-height-mobile + $gap};
|
|
}
|
|
|
|
.woocommerce-feature-enabled-activity-panels & {
|
|
top: -#{$adminbar-height + $header-height + $gap};
|
|
|
|
@include breakpoint( '<782px' ) {
|
|
top: -#{$adminbar-height-mobile + $header-height + $gap};
|
|
}
|
|
}
|
|
}
|