app.scss 615 B

1234567891011121314151617181920212223242526
  1. // Fonts
  2. @import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700&display=fallback");
  3. // Bootstrap
  4. @import "../css/stylesheet.css";
  5. @import "../css/adminlte.min.css";
  6. @import "../css/slim.min.css";
  7. .checkout-gateways {
  8. // make the radio button clickable
  9. cursor: pointer;
  10. // add some space between all gateway divs bit the last one
  11. &:not(:last-child) {
  12. margin-bottom: 1rem;
  13. }
  14. }
  15. .checkout-gateway-label {
  16. // make the label clickable
  17. cursor: pointer;
  18. // center the label
  19. display: flex;
  20. justify-content: start;
  21. align-items: center;
  22. }