You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
309 B
18 lines
309 B
5 years ago
|
/* pages/classroom/classroom.wxss */
|
||
|
.grid-view{
|
||
|
display: -webkit-flex;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: space-between;
|
||
|
flex-wrap: wrap;
|
||
|
width: 100%;
|
||
|
}
|
||
|
.grid-cell{
|
||
|
flex: 0 0 auto;
|
||
|
width: 25%;
|
||
|
text-align: center;
|
||
|
color: #797979;
|
||
|
padding: 40rpx 0;
|
||
|
font-size: 30rpx;
|
||
|
}
|