Guest User

Delicious Strategy Logo Fix

a guest
Nov 19th, 2019
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. .hero-logo-container {
  2. display: flex;
  3. flex-direction: column;
  4. margin: 40px 0;
  5. align-items: center;
  6. }
  7.  
  8. .hero-logo-img {
  9. width: 90px;
  10. margin-bottom: 20px;
  11. }
  12.  
  13. .hero-logo-text {
  14. width: 300px;
  15. }
  16.  
  17. @media (max-width: 375px) {
  18.  
  19. .hero-logo-container {
  20. display: flex;
  21. flex-direction: column;
  22. justify-content: center;
  23. align-items: center;
  24. }
  25.  
  26. .hero-logo-img {
  27. width: 50px;
  28. margin-bottom: 6px;
  29. }
  30.  
  31. .hero-logo-text {
  32. width: 200px;
  33.  
  34. }
  35. }
Advertisement
Add Comment
Please, Sign In to add comment