ci(deploy): restrict build job to datawhalechina owner

docs: update README phrasing for better clarity
style: improve responsive text wrapping in home hero and text components

Add conditional to only run build job for datawhalechina repository
Update README wording for better flow and understanding
Modify CSS to handle text wrapping on mobile while maintaining desktop behavior
This commit is contained in:
sanbuphy
2026-01-13 09:42:39 +08:00
parent 1d2893925a
commit 6dca0016eb
4 changed files with 24 additions and 5 deletions
+8 -1
View File
@@ -94,6 +94,13 @@
/* Fix tagline wrapping issues */
.VPHomeHero .tagline {
white-space: nowrap;
white-space: pre-wrap;
word-break: break-word;
max-width: none !important;
}
@media (min-width: 960px) {
.VPHomeHero .tagline {
white-space: nowrap;
}
}