New: Vergunningcheck online

This commit is contained in:
2026-02-16 10:37:39 +01:00
parent 75f8e29973
commit ab2b980d97
18 changed files with 405 additions and 82 deletions

View File

@@ -1,7 +1,7 @@
// bootstrap js components
// import Alert from "js/bootstrap/src/alert";
// import Button from "js/bootstrap/src/button";
// import Carousel from "js/bootstrap/src/carousel";
import Carousel from "js/bootstrap/src/carousel";
import Collapse from "js/bootstrap/src/collapse";
import Dropdown from "js/bootstrap/src/dropdown";
import Modal from "js/bootstrap/src/modal";
@@ -45,6 +45,14 @@ import Tab from "js/bootstrap/src/tab";
modalOpen = false;
}
}
// Zoek alle carousels en initialiseer ze
const carouselList = document.querySelectorAll('.carousel');
carouselList.forEach(carousel => {
new Carousel(carousel, {
ride: 'carousel',
interval: 5000 // optioneel: snelheid
});
});
});
searchModalEl.addEventListener('hidden.bs.modal', e => {

View File

@@ -461,4 +461,9 @@ $quote-color: #918e91;
display: flex;
align-items: center;
margin-bottom: 1rem !important;
}
.no-style {
box-shadow: none !important;
max-height: none !important;
}

View File

@@ -40,7 +40,7 @@
@import "../bootstrap/modal";
// @import "../bootstrap/tooltip";
// @import "../bootstrap/popover";
// @import "../bootstrap/carousel";
@import "../bootstrap/carousel";
// @import "../bootstrap/spinners";
// @import "../bootstrap/offcanvas";
// @import "../bootstrap/placeholders";