/*
 Theme Name:   Mon super thème
 Theme URI:    http://wordpress.org/mon-super-theme/
 Template:     twentytwentyfive
 Author:       Nicolas THAI
 Author URI:   http://wordpress.org/
 Description:  Mon super thème enfant pour mon site web de recettes de cuisine.
 */
.liste-ingredients {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-flow: dense;
}
.liste-ingredients ul {
  display: contents;
}
.liste-ingredients li.nom-ingredient {
  grid-column: 1;
}

.liste-ingredients li {
  grid-column: 2;
}
