123456789101112131415161718192021222324252627282930313233343536 |
- .dimensions {
- width: 35rem;
- }
- .numbers {
- input::-webkit-outer-spin-button,
- input::-webkit-inner-spin-button {
- display: none;
- }
- input {
- -moz-appearance: textfield;
- }
- .input-value {
- padding-left: 0.5rem;
- }
- span {
- color: darkgrey;
- }
- ::ng-deep .mat-mdc-form-field-infix {
- height: 40px !important;
- min-height: 40px !important;
- padding-top: 8px !important;
- }
- }
- .ProseMirror {
- overflow: auto;
- }
- ::ng-deep .ProseMirror {
- height: 10rem !important;
- overflow-y: auto;
- }
|