Created
March 7, 2019 14:42
-
-
Save zartgesotten/ea194f4376834d54a0a324fca5a365a6 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
| /* --------------------------------------------------------------------- | |
| 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; | |
| } |
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
| /* --------------------------------------------------------------------- | |
| Module: Call to Action | |
| Requirement: You must have equal column heights. | |
| Requirement: Button layout must be stacked. | |
| ------------------------------------------------------------------------ */ | |
| .fl-module-cta { | |
| display: flex; | |
| height: 100%; | |
| } | |
| .fl-module-cta .fl-module-content { | |
| width: 100%; /* fixes IE11 */ | |
| } | |
| .fl-cta-wrap { | |
| display: flex; | |
| flex-direction: column; | |
| height: 100%; | |
| } | |
| .fl-cta-text { | |
| flex-grow: 1; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment