1234567891011121314151617181920212223242526 |
- @media (min-width: @screen-sm) {
- .signup-input {
- padding-right: 0;
- input {
- border-top-right-radius: 0;
- border-bottom-right-radius: 0;
- border-right-width: 0;
- }
- }
- .signup-button {
- padding-left: 0;
- .btn {
- border-top-left-radius: 0;
- border-bottom-left-radius: 0;
- }
- }
- .jumbotron-kickstarter {
- display: flex;
- flex-direction: row;
- flex-wrap: wrap;
- justify-content: space-between;
- align-items: center;
- }
- }
|