Fix: Add vendor prefixes for user-select and text-size-adjust for better browser compatibility

This commit is contained in:
oussama-madimagh 2025-05-13 20:33:29 +01:00
parent a0b5c2e88c
commit 25384c8ac3
2 changed files with 10 additions and 0 deletions

View file

@ -59,8 +59,12 @@ button {
html {
font-size: 100%;
max-height: 100%;
-webkit-user-select: none;
user-select: none;
-webkit-text-size-adjust: 100%;
text-size-adjust: 100%;
}
body {
background: #dedede;
@ -188,7 +192,10 @@ strong {
font-weight: bold;
}
p {
-webkit-user-select: none;
user-select: text;
}
p a {
text-decoration: underline;