Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@
width: 100%;
border-collapse: collapse;

&.reviewsTable {
tr:last-child {
td {
border-bottom: none;
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[⚠️ maintainability]
The removal of !important is a positive change for maintainability, as it reduces specificity conflicts. However, ensure that this change does not affect the intended styling elsewhere in the application, especially if there are other styles that might override this rule.

}
}
}

&.reviewsTable thead tr th {
border-top: 1px solid #A8A8A8;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@
}

.aiReviewerRow {
padding-bottom: 0;
@include ltelg {
tr:has(&) {
td:first-child {
Expand Down
Loading