You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
622 B
SCSS
44 lines
622 B
SCSS
// .uni-row {
|
|
// height: calc(100vh - 66px);
|
|
// overflow: hidden;
|
|
// }
|
|
|
|
.subject-list,
|
|
.grade-list,
|
|
.press-list {
|
|
height: calc(100vh - 66px);
|
|
padding: 8px;
|
|
}
|
|
|
|
.list-item {
|
|
padding: 15px;
|
|
border-radius: 6px;
|
|
background-color: $uni-bg-color;
|
|
text-align: center;
|
|
|
|
+ .list-item {
|
|
margin-top: 8px;
|
|
}
|
|
|
|
&.selected {
|
|
background: $uni-color-primary;
|
|
color: #fff;
|
|
}
|
|
|
|
> text {
|
|
pointer-events: none;
|
|
}
|
|
}
|
|
|
|
.complete-btn {
|
|
line-height: 2.0;
|
|
}
|
|
|
|
.default-text {
|
|
height: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
color: $uni-text-color-placeholder;
|
|
font-size: $uni-font-size-mini;
|
|
} |