1234567891011121314151617181920212223242526 |
- @charset "UTF-8";
- /**
- * 下方引入的为Tuniao UI的集成样式文件,为scss预处理器,其中包含了一些"tn-"开头的自定义变量
- * 使用的时候,请将下面的一行复制到您的uniapp项目根目录的uni.scss中即可
- * Tuniao UI自定义的css类名和scss变量,均以"tn-"开头,不会造成冲突,请放心使用
- */
- .uni-table-tr {
- display: table-row;
- transition: all 0.3s;
- box-sizing: border-box;
- }
- .checkbox {
- padding: 0 8px;
- width: 26px;
- padding-left: 12px;
- display: table-cell;
- vertical-align: middle;
- color: #333;
- font-weight: 500;
- border-bottom: 1px #ebeef5 solid;
- font-size: 14px;
- }
- .tr-table--border {
- border-right: 1px #ebeef5 solid;
- }
|