Files
xl-mobile/src/scss/global.scss

62 lines
1.3 KiB
SCSS
Raw Normal View History

2025-03-28 09:37:10 +08:00
$primary-color: #2D5CF6;
2025-03-25 16:35:39 +08:00
.test {
border: 1px solid red;
@apply box-border;
}
2025-03-26 19:10:41 +08:00
.tui-btn {
2025-04-07 18:04:39 +08:00
border-radius: 10rpx !important;
2025-03-26 19:10:41 +08:00
}
2025-03-28 09:37:10 +08:00
.tui-primary-outline {
background-color: lighten($primary-color, 40%) !important;
}
.tui-alert-box {
border-radius: 16rpx !important;
overflow: hidden;
2025-03-28 10:48:50 +08:00
2025-03-28 09:37:10 +08:00
.tui-alert-content {
padding: 40rpx 32rpx !important;
}
}
2025-03-28 10:48:50 +08:00
.tui-actionsheet {
padding-bottom: calc(24rpx + constant(safe-area-inset-bottom));
padding-bottom: calc(24rpx + env(safe-area-inset-bottom));
}
.ellipsis-1 {
2025-03-28 15:34:00 +08:00
display: inline-block; /* 创建一个伸缩容器 */
2025-03-28 10:48:50 +08:00
-webkit-box-orient: vertical; /* 设置伸缩容器的方向为垂直 */
-webkit-line-clamp: 1; /* 限制显示的行数为2行 */
overflow: hidden; /* 超出内容隐藏 */
text-overflow: ellipsis; /* 超出部分显示省略号 */
2025-03-28 15:34:00 +08:00
white-space: nowrap;
2025-03-28 10:48:50 +08:00
}
.ellipsis-2 {
display: -webkit-box; /* 创建一个伸缩容器 */
-webkit-box-orient: vertical; /* 设置伸缩容器的方向为垂直 */
-webkit-line-clamp: 2; /* 限制显示的行数为2行 */
overflow: hidden; /* 超出内容隐藏 */
text-overflow: ellipsis; /* 超出部分显示省略号 */
}
2025-03-28 15:34:00 +08:00
.nowrap {
white-space: nowrap;
}
2025-04-07 18:04:39 +08:00
.test-22r {
font-size: 22rpx;
}
.test-24r {
font-size: 24rpx;
}
.test-28r {
font-size: 28rpx;
}