We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eed57c7 commit 5a6b4cbCopy full SHA for 5a6b4cb
1 file changed
src/components/SignersList.module.css
@@ -17,21 +17,25 @@
17
padding: 0;
18
margin: 0;
19
display: grid;
20
- grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
+ grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
21
gap: 12px;
22
+ max-width: 760px;
23
+ margin-left: auto;
24
+ margin-right: auto;
25
}
26
27
/* Full variant for signatories page - more columns, fixed width */
28
.gridFull {
29
grid-template-columns: repeat(auto-fill, minmax(200px, 200px));
30
gap: 16px;
31
justify-content: start;
32
+ max-width: none;
33
34
35
/* Responsive grid adjustments */
36
@media (min-width: 1200px) {
37
.grid {
- grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
38
+ grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
39
gap: 14px;
40
41
0 commit comments