We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81bc89e commit c873f20Copy full SHA for c873f20
src/pages/plugins/index.astro
@@ -68,6 +68,13 @@ const hasFeaturedPlugins = featured.length > 0;
68
background-color: var(--bg);
69
padding: 12px 0;
70
z-index: 1;
71
+
72
+ // This extends the background out to block the glow from a .plugin that should appear covered
73
+ --extra-side-width: 24px;
74
+ margin-left: calc(-1 * var(--extra-side-width));
75
+ margin-right: calc(-1 * var(--extra-side-width));
76
+ padding-left: var(--extra-side-width);
77
+ padding-right: var(--extra-side-width);
78
}
79
80
.controls input,
0 commit comments