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 f804abf758
commit 569a4705e7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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;