@sorocraft/ui 1.2.29 → 1.2.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -221,6 +221,13 @@ $xxl: 1440px;
|
|
|
221
221
|
background-repeat: repeat-x;
|
|
222
222
|
}
|
|
223
223
|
|
|
224
|
+
@mixin maxLine($lineCount) {
|
|
225
|
+
display: -webkit-box;
|
|
226
|
+
line-clamp: $lineCount;
|
|
227
|
+
-webkit-line-clamp: $lineCount;
|
|
228
|
+
-webkit-box-orient: vertical;
|
|
229
|
+
}
|
|
230
|
+
|
|
224
231
|
@mixin avatar-size($size) {
|
|
225
232
|
width: functions.toRem(map.get($avatar-sizes, $size));
|
|
226
233
|
height: functions.toRem(map.get($avatar-sizes, $size));
|