fix: reduce gap in .Panels for improved layout consistency

- Decreased the gap property in .Panels from '2rem' to '1rem' to enhance alignment and spacing.
- This change continues the effort to improve visual consistency across the plugin.
This commit is contained in:
Zack Spear
2025-05-23 15:26:13 -07:00
parent 348ca248b9
commit b6be93f8db

View File

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