Quick and bad hack for chromium browsers

This commit is contained in:
Tracker-Friendly 2024-01-27 15:02:58 +00:00
parent 5fa3324766
commit 6010d18396
1 changed files with 10 additions and 4 deletions

View File

@ -157,10 +157,7 @@ body {
background-position: center;
background-repeat: no-repeat;
background-size: 55%;
}
.bottomBar .wordCounter {
transform: translateY(-9px)
transform: translateY(-5px);
}
.bottomBar button:hover {
@ -649,3 +646,12 @@ body {
.links a:hover {
text-decoration: dashed;
}
@supports (-webkit-appearance: none) {
.bottomBar .removeButton {
transform: translateY(0px);
}
.bottomBar .wordCounter {
transform: translateY(-9px);
}
}