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 9b8259c commit d106606Copy full SHA for d106606
index.html
@@ -417,9 +417,10 @@
417
background-attachment: scroll !important; /* Disable parallax on mobile for performance and compatibility */
418
}
419
#hero {
420
- background-size: contain; /* Show the whole image, might leave empty space */
421
- background-repeat: no-repeat; /* Prevent tiling */
422
- min-height: 60vh; /* Adjust height for mobile to better fit 'contain' */
+ background-size: cover; /* Changed from contain to cover */
+ background-position: center center; /* Ensure image is centered with cover */
+ background-repeat: no-repeat;
423
+ min-height: 80vh; /* Increased height for mobile */
424
425
426
/* Styles for text blocks within panels */
0 commit comments