From 569a4705e71173c887d0ac6b13d3614b6189e989 Mon Sep 17 00:00:00 2001 From: Taylor Obyen <162023405+taylorobyen@users.noreply.github.com> Date: Tue, 15 Oct 2024 11:46:55 -0400 Subject: [PATCH] Fix ease button alignment (#3474) * Fix ease button alignment * Make CSS not 'hacky' --- qt/aqt/data/web/css/reviewer-bottom.scss | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/qt/aqt/data/web/css/reviewer-bottom.scss b/qt/aqt/data/web/css/reviewer-bottom.scss index 59098a5fb..ac07d4d80 100644 --- a/qt/aqt/data/web/css/reviewer-bottom.scss +++ b/qt/aqt/data/web/css/reviewer-bottom.scss @@ -23,6 +23,16 @@ body { position: relative; } +#innertable > tbody > tr { + display: flex; + align-items: stretch; + justify-content: center; +} + +#innertable > tbody > tr > td { + flex: 1; +} + button { min-width: 60px; white-space: nowrap;