Few CSS touches

This commit is contained in:
Lim Chee Aun 2023-02-28 07:59:48 +08:00
parent 1808bebe84
commit 58bc60c9b8
3 changed files with 7 additions and 1 deletions

View file

@ -1211,7 +1211,7 @@ meter.donut:is(.danger, .explode):after {
.shiny-pill {
color: var(--button-text-color);
text-shadow: 0 -1px var(--drop-shadow-color);
text-shadow: 0 calc(var(--hairline-width) * -1) var(--drop-shadow-color);
background-color: var(--button-bg-color);
background-image: linear-gradient(
160deg,

View file

@ -61,6 +61,8 @@
transition: all 0.3s ease-in-out;
padding: 0 env(safe-area-inset-right) env(safe-area-inset-bottom)
env(safe-area-inset-left);
user-select: none;
-webkit-touch-callout: none;
}
#shortcuts .tab-bar ul {
display: flex;

View file

@ -84,6 +84,10 @@
box-sizing: border-box;
}
html {
text-size-adjust: 100%;
}
body {
font-family: ui-rounded, system-ui;
font-size: 16px;