fix: break word (#708)

* fix: break word

* chore: update
This commit is contained in:
boojack
2022-12-09 08:31:45 +08:00
committed by GitHub
parent a2ee750d1e
commit 56716cdad4
11 changed files with 60 additions and 49 deletions

View File

@ -3,14 +3,19 @@
@tailwind utilities;
@layer utilities {
.hide-scrollbar {
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}
/* Chrome, Safari and Opera */
.hide-scrollbar::-webkit-scrollbar {
display: none;
}
.hide-scrollbar {
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
.word-break {
overflow-wrap: anywhere;
word-break: normal;
}
}