35 lines
533 B
SCSS
35 lines
533 B
SCSS
:host {
|
|
display: block;
|
|
font-family: 'Inter', sans-serif;
|
|
}
|
|
|
|
// .container {
|
|
// max-width: 100%;
|
|
// margin: 0 auto;
|
|
// }
|
|
|
|
:host ::ng-deep quill-editor {
|
|
.ql-container {
|
|
min-height: 200px;
|
|
}
|
|
}
|
|
|
|
// input[type='checkbox'] {
|
|
// &:checked + .dot {
|
|
// transform: translateX(100%);
|
|
// }
|
|
// &:checked + .block {
|
|
// background-color: #4299e1;
|
|
// }
|
|
// }
|
|
|
|
.dot {
|
|
transition: all 0.3s ease-in-out;
|
|
}
|
|
::ng-deep .ng-select.ng-select-single .ng-select-container {
|
|
height: 50px;
|
|
}
|
|
quill-editor {
|
|
width: 100%;
|
|
}
|