Last active
January 2, 2025 19:42
-
-
Save wpacademy/75340a0f9a7f665534b740231265ad8b to your computer and use it in GitHub Desktop.
Custom Elementor Accordion with 2 Columns and Box Shadow
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Custom Elementor Accordion with 2 Columns and Box Shadow | |
**/ | |
.wpac-accordion .e-n-accordion { | |
display: grid; | |
grid-template-columns: repeat(2, 1fr); | |
gap: 15px; | |
align-items: start; | |
} | |
.wpac-accordion .e-n-accordion-item { | |
background: #ffffff; | |
border-radius: 16px; | |
box-shadow: 0px 5px 16px 0 rgba(8, 15, 52, 0.06); | |
} | |
@media (max-width: 480px) { | |
.wpac-accordion .e-n-accordion { | |
grid-template-columns: 100%; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment