Advertisement
Guest User

Untitled

a guest
Aug 25th, 2016
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. .features {
  2. display: flex;
  3.  
  4. @include tablet {
  5. flex-direction: column;
  6. text-align: left;
  7. }
  8.  
  9. @include mobile {
  10. display: block;
  11. }
  12.  
  13. .feature__column {
  14. text-align: center;
  15. padding: 50px;
  16.  
  17. @include tablet {
  18. display: flex;
  19. align-items: center;
  20. text-align: left;
  21.  
  22. article {
  23. margin-left: 50px;
  24. }
  25. }
  26. }
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement