simple-item-modal.component.scss 581 B

12345678910111213141516171819202122232425262728293031323334353637
  1. .dimensions {
  2. width: 35rem;
  3. background-image: url("/assets/images/background.jpg");
  4. }
  5. .numbers {
  6. input::-webkit-outer-spin-button,
  7. input::-webkit-inner-spin-button {
  8. display: none;
  9. }
  10. input {
  11. -moz-appearance: textfield;
  12. }
  13. .input-value {
  14. padding-left: 0.5rem;
  15. }
  16. span {
  17. color: darkgrey;
  18. }
  19. ::ng-deep .mat-mdc-form-field-infix {
  20. height: 40px !important;
  21. min-height: 40px !important;
  22. padding-top: 8px !important;
  23. }
  24. }
  25. .ProseMirror {
  26. overflow: auto;
  27. }
  28. ::ng-deep .ProseMirror {
  29. height: 10rem !important;
  30. overflow-y: auto;
  31. }