Lisää toimintoja
< Malline:Etusivu | Nappulat
| Ei muokkausyhteenvetoa | Ei muokkausyhteenvetoa | ||
| Rivi 5: | Rivi 5: | ||
|    width: 100%; |    width: 100%; | ||
|    margin-top: 1rem; |    margin-top: 1rem; | ||
| } | |||
| .fp-buttons-small { | |||
|   grid-template-columns: repeat(3, 1fr); | |||
| } | } | ||
Versio 11. joulukuuta 2024 kello 19.13
.fp-buttons {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  width: 100%;
  margin-top: 1rem;
}
.fp-buttons-small {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1024px) {
  .fp-buttons {  
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  }
}
