I'm looking to modify the width of the .container div in Bootstrap 4. The original CSS code is as follows:
@media (min-width: 1200px)
.container {
max-width: 1160px;
}
If I were to include the following code in my file, would it potentially create any issues or would everything function smoothly?
@media (min-width: 1920px)
.container {
max-width: 1360px;
}