fix: adjust gap in .Panels for improved layout consistency

- Reduced the gap property in .Panels from '2rem 3rem' to '2rem' for better alignment and spacing.
- This change continues the effort to enhance visual consistency across the plugin.
This commit is contained in:
Zack Spear
2025-05-23 10:26:40 -07:00
parent 6d64983c6a
commit d5ec1d8c6c

View File

@@ -1359,7 +1359,7 @@ a.list {
.Panels {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(120px, 120px));
gap: 2rem 3rem;
gap: 2rem;
margin-top: 2rem;
box-sizing: border-box;
justify-content: start;