mirror of
https://github.com/HeyPuter/puter.git
synced 2026-03-05 23:38:56 -06:00
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:
7341
package-lock.json
generated
7341
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user