mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 14:32:22 -04:00
Fix ease button alignment (#3404)
* Fix ease button alignment * Fix contributors part 2
This commit is contained in:
parent
21df287579
commit
a262e02f9d
2 changed files with 8 additions and 0 deletions
|
@ -190,6 +190,7 @@ Voczi <https://github.com/voczi>
|
||||||
Ben Nguyen <105088397+bpnguyen107@users.noreply.github.com>
|
Ben Nguyen <105088397+bpnguyen107@users.noreply.github.com>
|
||||||
Themis Demetriades <themis100@outlook.com>
|
Themis Demetriades <themis100@outlook.com>
|
||||||
Gregory Abrasaldo <degeemon@gmail.com>
|
Gregory Abrasaldo <degeemon@gmail.com>
|
||||||
|
Taylor Obyen <https://github.com/taylorobyen>
|
||||||
|
|
||||||
********************
|
********************
|
||||||
|
|
||||||
|
|
|
@ -23,6 +23,12 @@ body {
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#middle {
|
||||||
|
position: absolute;
|
||||||
|
left: 50%;
|
||||||
|
transform: translateX(-50%);
|
||||||
|
}
|
||||||
|
|
||||||
button {
|
button {
|
||||||
min-width: 60px;
|
min-width: 60px;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
|
@ -75,6 +81,7 @@ button {
|
||||||
border-top: 1px solid color(border);
|
border-top: 1px solid color(border);
|
||||||
/* Better compatibility with graphics pad/touchscreen */
|
/* Better compatibility with graphics pad/touchscreen */
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
.nightMode {
|
.nightMode {
|
||||||
|
|
Loading…
Reference in a new issue