mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-02 12:49:27 +00:00
27 lines
430 B
CSS
27 lines
430 B
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;
|
|
} |