ul {
  padding-left: 0;
}
li {
  display: grid;
  grid-template-rows: auto auto;
  grid-template-columns: 10em auto;
  margin-bottom: 0.5em;
}
li .title {
  grid-row: 1 / 2;
  grid-column: 1 / 3;
}
li .date {
  grid-row: 2 / 3;
  grid-column: 1 / 2;
}
li .dashboard {
  grid-row: 2 / 3;
  grid-column: 2 / 3;
}
li .dashboard img {
  max-height: 1.5em;
}

