🐞 fix: Adjust gradient on mobile
Deploy to Dreamhost (dev) / build (push) Successful in 33s
Sync TODOs with Issues / sync_todos (push) Successful in 7s

This commit is contained in:
Keith Solomon
2026-06-30 20:42:13 -05:00
parent 01101ff712
commit b53f7bb4ca
3 changed files with 27 additions and 19 deletions
+20
View File
@@ -0,0 +1,20 @@
@media (max-width: 767px) {
.wp-block-spacer.home {
height: 1.5rem !important;
}
.wp-block-acf-section.has-background-gradient-1-gradient-background {
background: linear-gradient(
180deg,
rgba(242, 107, 83, 0) 0%,
rgba(242, 107, 83, 0) 55%,
rgba(242, 107, 83, 0.2) 80%,
rgba(242, 107, 83, 0) 80.01%
),
linear-gradient(
180deg,
transparent 0%,
white 100%
) !important;
}
}