Skip to content

Instantly share code, notes, and snippets.

@TwisterMc
Created April 13, 2018 19:04
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Align Beaver Builder Module: Callout
/* ---------------------------------------------------------------------
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