Created
August 21, 2020 02:45
-
-
Save romanejaquez/ff48ac9b6acf8c989b701b921be9b746 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
@import './../../../assets/colors.scss'; | |
.form-page-container { | |
display: flex; | |
flex-direction: column; | |
height: 100%; | |
width: 100%; | |
} | |
.step-page-container { | |
flex: 1; | |
margin: 0px 32px; | |
} | |
.form-continue-btn { | |
color: $white; | |
background: $blue; | |
padding: 20px; | |
border-radius: 50px; | |
font-size: 1.15em; | |
cursor: pointer; | |
border: none !important; | |
margin: 32px; | |
&:disabled { | |
opacity: 0.5; | |
cursor: not-allowed !important; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment