wizard_custom_mobile.scss 957 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. @import 'wizard_variables';
  2. .custom-wizard {
  3. .wizard-step-form {
  4. .wizard-btn {
  5. margin: 0;
  6. }
  7. }
  8. .wizard-step-description {
  9. .image-container {
  10. margin: 20px 0;
  11. padding: 0;
  12. }
  13. img.large {
  14. width: 150px;
  15. padding: 10px;
  16. }
  17. img.small {
  18. width: 60px;
  19. height: 60px;
  20. padding: 10px;
  21. }
  22. .tip {
  23. position: relative;
  24. display: inline-block;
  25. margin: 20px 0;
  26. }
  27. }
  28. .wizard-step-banner {
  29. max-height: 200px !important;
  30. width: initial !important;
  31. }
  32. .control-group {
  33. margin-right: 0;
  34. margin-bottom: 20px;
  35. width: 100%;
  36. }
  37. input, textarea {
  38. border: 1px solid #919191;
  39. }
  40. .wizard-column {
  41. .checkbox-field > label {
  42. max-width: 80%;
  43. }
  44. .wizard-field .field-description {
  45. display: flex;
  46. align-items: center;
  47. img {
  48. float: none;
  49. }
  50. i, span {
  51. flex: 1;
  52. }
  53. }
  54. }
  55. }