This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Bootstrap version 4 | |
function detectSizeBootstrapGrid() { | |
let envs = ['xs', 'sm', 'md', 'lg', 'xl']; | |
// Create element to get name size | |
let el = document.createElement('div'); | |
document.body.appendChild(el); | |
let size = envs.shift(); |