Created
August 12, 2022 00:31
-
-
Save nrlsyhmina/182e0619e8a72ab211bad1d42b7cf882 to your computer and use it in GitHub Desktop.
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
/*This is the CSS (prefixed)*/ | |
selector .elementor-widget-container, | |
selector .elementor-widget-price-table, | |
selector .elementor-price-table { | |
display: -webkit-box; | |
display: -ms-flexbox; | |
display: flex; | |
-webkit-box-orient: vertical; | |
-webkit-box-direction: normal; | |
-ms-flex-direction: column; | |
flex-direction: column; | |
height: 100%; | |
} | |
selector .elementor-price-table__footer { | |
margin-top: auto; | |
width: 100%; | |
} | |
/*hover effects*/ | |
selector .elementor-widget-price-table { | |
-webkit-transition: all 0.3s ease-out ; | |
-o-transition: all 0.3s ease-out ; | |
transition: all 0.3s ease-out ; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment