Fixes package manger head border (#4420)

This commit is contained in:
CJ 2024-01-07 18:54:14 -06:00 committed by GitHub
parent 910c7025dc
commit b968aa3f31
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 18 additions and 0 deletions

View file

@ -224,6 +224,9 @@ const InstalledPackagesList: React.FC<{
</th>
) : undefined}
</tr>
<tr>
<th className="border-row" colSpan={100}></th>
</tr>
</thead>
<tbody>{renderBody()}</tbody>
</Table>
@ -983,6 +986,9 @@ const AvailablePackagesList: React.FC<{
<FormattedMessage id="package_manager.description" />
</th>
</tr>
<tr>
<th className="border-row" colSpan={100}></th>
</tr>
</thead>
<tbody>{renderBody()}</tbody>
</Table>

View file

@ -29,6 +29,10 @@
.package-manager-table-container {
max-height: 300px;
overflow-y: auto;
th {
border: none;
}
}
table thead {

View file

@ -491,6 +491,14 @@ textarea.text-input {
}
}
/* stylelint-disable declaration-no-important */
.border-row {
background-color: #414c53;
height: 1px;
padding: 0 !important;
}
/* stylelint-enable declaration-no-important */
@media (max-width: 576px) {
.row.justify-content-center {
margin-left: 0;