Fix ease button alignment (#3474)

* Fix ease button alignment

* Make CSS not 'hacky'
This commit is contained in:
Taylor Obyen 2024-10-15 11:46:55 -04:00 committed by GitHub
parent 8f26129c74
commit 332fae40ca

View file

@ -23,6 +23,16 @@ body {
position: relative; position: relative;
} }
#innertable > tbody > tr {
display: flex;
align-items: stretch;
justify-content: center;
}
#innertable > tbody > tr > td {
flex: 1;
}
button { button {
min-width: 60px; min-width: 60px;
white-space: nowrap; white-space: nowrap;