diff --git a/themes/intotheeast/css/style.css b/themes/intotheeast/css/style.css index d2d5271..8610f21 100644 --- a/themes/intotheeast/css/style.css +++ b/themes/intotheeast/css/style.css @@ -1210,22 +1210,19 @@ body::after { .trip-stats-block, .trip-cycling-block { - display: grid; - grid-template-rows: 0fr; + max-height: 0; overflow: hidden; margin-bottom: 0; - transition: grid-template-rows 0.35s ease, margin-bottom 0.35s ease; + transition: max-height 0.4s ease, margin-bottom 0.35s ease; } .trip-stats-block.is-open, .trip-cycling-block.is-open { - grid-template-rows: 1fr; + max-height: 600px; margin-bottom: var(--space-6); } .trip-panel-inner { - min-height: 0; - overflow: hidden; background: var(--color-canvas); border: 1px solid var(--color-border); border-radius: var(--radius-md);