We have applied the below CSS and the component is taking the full width in all view ports, could anyone please confirm if this is a right way?
/* Standard Layout for Most Screens */
@590883 (min-width: 576px) {
.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
max-width: 100% !important;
}
}
/* Customized Layout for Large Desktops */
@590883 (min-width: 1200px) {
.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
max-width: 1400px !important;
}
}
/* Extra Large Screens and Special Cases */
@590883 (min-width: 1600px) {
.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
max-width: 1800px !important;
}
}
/* Tablets and Small Desktops */
@590883 (min-width: 768px) {
.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
max-width: 100% !important;
}
}
/* Large Screens with Widescreen Monitors */
@590883 (min-width: 1920px) {
.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
max-width: 2000px !important;
}
}
/* Full HD Displays */
@590883 (min-width: 2560px) {
.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
max-width: 2500px !important;
}
}