Disable word hyphenation on md+ screens

This commit is contained in:
Xevion
2022-12-28 20:32:13 -06:00
parent fc80f00fb0
commit 828928b579
2 changed files with 9 additions and 3 deletions

View File

@@ -59,4 +59,11 @@ html, body {
height: 75%;
@apply transition-transform drop-shadow-md hover:scale-[120%] opacity-80 hover:opacity-100 text-white m-auto aspect-square;
}
}
.description {
hyphens: auto;
@screen md {
hyphens: none;
}
}