Created
October 25, 2017 20:38
-
-
Save geddski/ede5c06436eac8483ab50f3879851742 to your computer and use it in GitHub Desktop.
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
crossbow { | |
display: flex; | |
flex-direction: row-reverse; | |
align-items: flex-end; | |
} | |
.target.goo{ | |
flex-grow: 1; | |
} | |
.target:nth-of-type(2){ | |
align-self: stretch; | |
flex-grow: 2; | |
flex-shrink: 2; | |
} | |
.target:nth-of-type(3){ | |
align-self: flex-start; | |
flex-shrink: 0; | |
} | |
.target:nth-of-type(4){ | |
flex-grow: 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment