Skip to content
Merged
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 @@ -126,7 +126,7 @@
color: #d4d4d8; /* text-neutral-300 */
border: 1px solid #404040; /* subtle border */
border-radius: 4px; /* rounded-sm */
padding: 4px 8px; /* px-2 py-1 */
padding: 4px 16px;
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

medium

While it's good that you removed the outdated comment, it seems there's a convention in this file to add comments that map CSS values to utility classes (e.g., from Tailwind CSS). To maintain consistency with other styles in this file that have similar comments, it would be better to update the comment instead of removing it. Based on the previous comment (/* px-2 py-1 */ for padding: 4px 8px;), the convention seems to be px-* then py-*. The new padding of 4px 16px would correspond to py-1 and px-4. Therefore, the comment should be updated to /* px-4 py-1 */.

Suggested change
padding: 4px 16px;
padding: 4px 16px; /* px-4 py-1 */

width: 100%;
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
Expand Down
Loading