fix title word wrapping

This commit is contained in:
isUnknown 2025-02-21 08:20:01 +01:00
parent 328fd95842
commit 949d7437a4
2 changed files with 6 additions and 2 deletions

View file

@ -39,7 +39,7 @@ html {
* {
scrollbar-width: thin;
scrollbar-color: rgba(255, 255, 255, 0.25) transparent;
scrollbar-color: rgba(255, 255, 255) transparent;
}
/* Works on Chrome, Edge, and Safari */
@ -54,7 +54,7 @@ html {
}
*::-webkit-scrollbar-thumb {
background-color: rgba(255, 255, 255, 0.25);
background-color: rgba(255, 255, 255);
border-radius: 0px;
border: none;
}

View file

@ -141,6 +141,10 @@ a {
word-break: break-all;
}
a > * {
word-break: normal;
}
a * {
transition: font 0.2s ease-in-out;
}