Basic VUE Components & Test WidgetController

This commit is contained in:
cgfhtw
2022-10-05 10:43:43 +02:00
parent 90e006feb5
commit 4f3e8dcb3c
9 changed files with 959 additions and 1 deletions
+16
View File
@@ -0,0 +1,16 @@
.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);
}
}