Skip to content

Commit ed21807

Browse files
authored
Update certStyles.css
1 parent 5b40e9a commit ed21807

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

web/certStyles.css

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -241,3 +241,23 @@ html,body{
241241
.modal-panel { padding:14px; }
242242
.cert-list { gap:10px; }
243243
}
244+
245+
/* 🚨 CRITICAL FIX: allow grid to use full width */
246+
.panel {
247+
min-width: 0;
248+
}
249+
250+
/* allow cert grid to expand and wrap properly */
251+
.cert-list {
252+
width: 100%;
253+
min-width: 0;
254+
display: grid;
255+
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
256+
align-items: stretch;
257+
}
258+
259+
/* ensure flex parents don’t force single column */
260+
.content-area,
261+
.panel {
262+
box-sizing: border-box;
263+
}

0 commit comments

Comments
 (0)