This commit is contained in:
Fabio 2026-02-26 13:39:45 +01:00
parent 179d206910
commit ba68b6f7f1

View file

@ -12,15 +12,15 @@
.gallery-section { .gallery-section {
display: grid; display: grid;
grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); /* leggermente più piccole */ grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); /* leggermente più piccole */
gap: 6px; /* SPACING RIDOTTO */ gap: 4px; /* SPACING RIDOTTO */
padding: 0 6px; padding: 0 4px;
} }
.thumb { .thumb {
width: 100%; width: 100%;
aspect-ratio: 1 / 1; aspect-ratio: 1 / 1;
border-radius: 8px; /* più compatto */ border-radius: 6px; /* più compatto */
overflow: hidden; overflow: hidden;
background: white; background: white;
box-shadow: 0 1px 3px rgba(0,0,0,0.12); /* più leggero */ box-shadow: 0 1px 3px rgba(0,0,0,0.12); /* più leggero */
@ -36,11 +36,11 @@
.play-icon { .play-icon {
position: absolute; position: absolute;
bottom: 6px; bottom: 4px;
right: 6px; right: 4px;
background: rgba(0,0,0,0.55); background: rgba(0,0,0,0.55);
color: white; color: white;
padding: 3px 5px; padding: 2px 4px;
border-radius: 4px; border-radius: 4px;
font-size: 12px; font-size: 11px;
} }