Fix explorer table extra white space on right

Fix explorer table was always too wide with extra white space on right side causing an unnecessary horizontal scrollbar.  Changed width for both the header row and item rows from 100vw to 100%, and added min-width.
This commit is contained in:
bill-c-law
2024-12-17 13:25:42 -05:00
parent 66bcf8a296
commit c5198a03fe
2 changed files with 3158 additions and 4189 deletions
+3154 -4187
View File
File diff suppressed because it is too large Load Diff
+4 -2
View File
@@ -428,13 +428,15 @@ input[type=text]:focus, input[type=password]:focus, input[type=email]:focus, sel
width: max-content;
margin: 0;
pointer-events: all;
width: 100vw;
width: 100%;
min-width: 795px;
margin-bottom: 20px;
}
.explore-table-headers {
display: none;
width: 100vw;
width: 100%;
min-width: 795px;
height: 25px;
border-bottom: 1px solid rgb(226, 226, 226);
background-color: #fff;