Skouter mortgage estimates. Web application with view written in PHP and Vue, but controller and models in Go.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

22 lines
325 B

  1. // Hero
  2. .hero {
  3. display: flex;
  4. flex-direction: column;
  5. justify-content: space-between;
  6. padding-bottom: 4rem;
  7. padding-top: 4rem;
  8. &.hero-sm {
  9. padding-bottom: 2rem;
  10. padding-top: 2rem;
  11. }
  12. &.hero-lg {
  13. padding-bottom: 8rem;
  14. padding-top: 8rem;
  15. }
  16. .hero-body {
  17. padding: $layout-spacing;
  18. }
  19. }