diff --git a/src/routes/Settings/components/Option/Option.less b/src/routes/Settings/components/Option/Option.less index 70e80e6f5..e3f34da82 100644 --- a/src/routes/Settings/components/Option/Option.less +++ b/src/routes/Settings/components/Option/Option.less @@ -29,8 +29,10 @@ .label { line-height: 1.5rem; - white-space: nowrap; - text-overflow: ellipsis; + display: -webkit-box; + -webkit-line-clamp: 2; + -webkit-box-orient: vertical; + overflow: hidden; color: var(--primary-foreground-color); } } @@ -75,4 +77,4 @@ } } } -} \ No newline at end of file +} diff --git a/src/routes/Settings/components/Section/Section.less b/src/routes/Settings/components/Section/Section.less index b4de116af..5ef9d1cfa 100644 --- a/src/routes/Settings/components/Section/Section.less +++ b/src/routes/Settings/components/Section/Section.less @@ -19,4 +19,4 @@ margin-bottom: 2rem; color: var(--primary-foreground-color); } -} \ No newline at end of file +}