screen-sm-up.less 486 B

1234567891011121314151617181920212223242526
  1. @media (min-width: @screen-sm) {
  2. .signup-input {
  3. padding-right: 0;
  4. input {
  5. border-top-right-radius: 0;
  6. border-bottom-right-radius: 0;
  7. border-right-width: 0;
  8. }
  9. }
  10. .signup-button {
  11. padding-left: 0;
  12. .btn {
  13. border-top-left-radius: 0;
  14. border-bottom-left-radius: 0;
  15. }
  16. }
  17. .jumbotron-kickstarter {
  18. display: flex;
  19. flex-direction: row;
  20. flex-wrap: wrap;
  21. justify-content: space-between;
  22. align-items: center;
  23. }
  24. }