skip to Main Content

Laravel – Bootstrap responsive doesn't work and not recognized in devtools

I'm working on a project with Laravel Mix, Vue.js and Bootstrap 5.3 About laravel mix: const mix = require("laravel-mix"); const path = require('path'); require("mix-env-file"); require("laravel-mix-workbox"); mix.js('resources/js/app.js', 'public/js') .version() .vue() .sass('resources/sass/app.scss', 'public/css') .sourceMaps() About app.scss @import "~bootstrap/dist/css/bootstrap"; ... custom things Vue.js…

VIEW QUESTION

Html – Bootstrap form validation inside a table with big checkbox not working

I use bootstrap 5.3.3 and have this structure see css used to create a big checkbox. .form-check-input[type=checkbox].big-checkbox { transform: scale(3); margin: 1.5rem; border-radius: 0; } <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous"> <!-- Table and checkbox inside it without validation --> <table>…

VIEW QUESTION
Back To Top
Search