mirror of
https://github.com/ankitects/anki.git
synced 2025-09-23 08:22:24 -04:00
Fix ease button alignment (#3474)
* Fix ease button alignment * Make CSS not 'hacky'
This commit is contained in:
parent
f804abf758
commit
569a4705e7
1 changed files with 10 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue