Skip to content
Open
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
3 changes: 3 additions & 0 deletions src/generators/web/ui/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ main {
.overflow-container {
overflow-x: auto;
width: 100%;
table td a + a {
margin-right: 0;
}
Comment on lines +23 to +25
Copy link

Copilot AI Dec 25, 2025

Choose a reason for hiding this comment

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

This table-related style is nested inside the .overflow-container block, but there's already a dedicated table block at lines 28-33 where other table anchor styles are defined. For better maintainability and consistency, consider moving this rule to the existing table block. The selector could be adjusted to td a + a to achieve the same specificity while keeping table styles organized together.

Copilot uses AI. Check for mistakes.
}

table {
Expand Down
Loading