updated Css for Scan page
This commit is contained in:
@@ -517,12 +517,14 @@ body.dark-mode .scan-table tr:nth-child(odd) {
|
|||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: 1fr 2fr; /* 1/3 and 2/3 layout */
|
grid-template-columns: 1fr 2fr; /* 1/3 and 2/3 layout */
|
||||||
gap: 20px; /* Add spacing between the columns */
|
gap: 20px; /* Add spacing between the columns */
|
||||||
margin: 20px auto;
|
margin: 20px; /* Add 20px space around the container */
|
||||||
max-width: 100%; /* Ensure it spans the full width */
|
max-width: calc(100% - 40px); /* Ensure it spans the full width minus the margin */
|
||||||
width: 100%; /* Ensure it takes full width */
|
width: 100%; /* Ensure it takes the full width */
|
||||||
align-items: flex-start; /* Align items at the top */
|
align-items: flex-start; /* Align items at the top */
|
||||||
overflow-x: hidden; /* Prevent horizontal overflow */
|
overflow-x: hidden; /* Prevent horizontal overflow */
|
||||||
box-sizing: border-box; /* Include padding and borders in width calculations */
|
box-sizing: border-box; /* Include padding and borders in width calculations */
|
||||||
|
border-radius: 5px; /* Optional: Add rounded corners */
|
||||||
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow */
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Input Form Card */
|
/* Input Form Card */
|
||||||
|
|||||||
Reference in New Issue
Block a user