I've been attempting to establish a minimum width for the container-fluid in my SpringBoot apps UI. I have created a report.css file
.report {
min-width: 1200px;
overflow: scroll;
}
Include it in the HTML file:
<link rel="stylesheet" type="text/css" src="../../resources/css/report.css" th:src="@{/resources/css/report.css}"/>
<body class="container-fluid report">
However, I am facing issues with its implementation. Can anyone provide guidance on how to troubleshoot this? Thank you in advance.