uni-grid-item.wxss
765 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
@charset "UTF-8";
/**
* uni-app内置的常用样式变量
*/
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.uni-grid-item {
height: 100%;
display: flex;
}
.uni-grid-item__box {
display: flex;
width: 100%;
position: relative;
flex: 1;
flex-direction: column;
}
.uni-grid-item--border {
position: relative;
z-index: 0;
border-bottom: 1px #D2D2D2 solid;
border-right: 1px #D2D2D2 solid;
}
.uni-grid-item--border-top {
position: relative;
border-top: 1px #D2D2D2 solid;
z-index: 0;
}
.uni-highlight:active {
background-color: #f1f1f1;
}