Files
FHC-Core/public/css/components/dashboard.css
T
2023-02-06 11:44:36 +01:00

29 lines
457 B
CSS

@import './calendar.css';
.alert-danger .form-check-input:checked {
border-color: #842029;
background-color: #842029;
}
.draganddropcontainer {
grid-template-columns:repeat(4,1fr);
gap: 1rem;
place-items: stretch;
place-content: stretch;
}
@media(max-width: 577px) {
.draganddropcontainer {
grid-template-columns:repeat(2,1fr);
}
}
.mirror-x {
transform: scaleX(-1);
}
.cursor-nw-resize {
cursor: nw-resize;
}
.cursor-move {
cursor: move;
}