Fix ease button alignment (#3404)

* Fix ease button alignment

* Fix contributors part 2
This commit is contained in:
Taylor Obyen 2024-09-10 15:44:11 -04:00 committed by GitHub
parent 21df287579
commit a262e02f9d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 8 additions and 0 deletions

View file

@ -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>
******************** ********************

View file

@ -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 {