7 lines
208 B
HTML
7 lines
208 B
HTML
<script>
|
|
// to add a bootstrap width class to the text input on the nav
|
|
let myItem = document.getElementById("col-search")
|
|
let child = myItem.firstElementChild;
|
|
child.setAttribute("class", "w-100")
|
|
</script>
|