Last active
August 29, 2015 14:01
-
-
Save simevidas/c4b1e9b2f5c6be1883f1 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
// Hey! Listen! | |
// The above slide animation is transition:flex. | |
// No hard-coded px/% width values! | |
@media (min-width: 800px) | |
.services | |
display flex | |
.services__item | |
flex 1 | |
transition flex .25s ease-in-out .1s | |
&:hover | |
flex-grow 3 | |
// But what do I do with :hover on tablets? | |
// https://twitter.com/simevidas/status/465462926640705537 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment