Align Beaver Builder Module: Callout
This file contains 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
/* --------------------------------------------------------------------- | |
Module: Callout | |
Requirement: You must have equal column heights. | |
------------------------------------------------------------------------ */ | |
.fl-module-callout { | |
display: flex; | |
height: 100%; | |
} | |
.fl-module-callout .fl-module-content { | |
width: 100%; /* fixes IE11 */ | |
} | |
.fl-callout { | |
display: flex; | |
flex-direction: column; | |
height: 100%; | |
} | |
.fl-callout-content, | |
.fl-callout-text-wrap { | |
flex-grow: 1; | |
display: flex; | |
flex-direction: column; | |
} | |
.fl-callout-text { | |
flex-grow: 1; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment