fix: reduce core profiler sticky footer height (#50788)

* fix: reduce core profiler sticky footer height

* increased height to 120px
This commit is contained in:
RJ 2024-08-20 18:48:49 +08:00 committed by GitHub
parent 2a406c7e8a
commit 905fe2246f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 8 additions and 3 deletions

View File

@ -346,7 +346,7 @@
}
}
$sticky-footer-height: 140px;
$sticky-footer-height: 120px;
.woocommerce-profiler-plugins__list {
display: flex;
@ -356,7 +356,7 @@
flex: 50%;
@mixin sticky-footer-scroll-padding {
padding-bottom: $sticky-footer-height;
padding-bottom: $sticky-footer-height + 32px;
}
@include breakpoint(">782px") {// sticky footer shouldn't apply to mobile layout
@ -426,7 +426,7 @@
@mixin plugins-sticky-footer {
background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 44.69%);
height: 140px;
height: $sticky-footer-height;
position: fixed;
bottom: 0;
}

View File

@ -0,0 +1,5 @@
Significance: patch
Type: tweak
Reduce core profiler sticky footer height