[SOLVED] Horizontal Timeline 7 days

Hello
how to make Horizontal Timeline display 7 days using 100% width?
If I use

then last column is displayed 70% and there is horizontal scrollbar How to display last column 100%? Thank you.

Add custom width in styles:

.timeline-item {
  width: calc(100% / 7);
}

Perfect! Thank you so much.