wx-guyantv/app.wxss
2024-12-27 17:35:38 +08:00

42 lines
773 B
Plaintext

/**app.wxss**/
@import "./static/iconfont.wxss";
@tailwind base;
@tailwind components;
@tailwind utilities;
.container {
height: 100%;
display: flex;
font-size: 24rpx;
font-weight: 400;
color: #373451;
line-height: 1.5;
flex-direction: column;
align-items: center;
box-sizing: border-box;
}
@font-face {
font-family: "kaiti";
src: url("https://xygywlweb.hunanjj.cn/FangYuanTi.ttf");
}
page {
font-family: "kaiti";
font-size: 28rpx;
font-weight: 400;
color: #373451;
line-height: 1.5;
}
.ellipsis {
overflow: hidden;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
text-overflow: ellipsis;
white-space: normal;
}
.text-ellipsis {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}