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.
36 lines
528 B
SCSS
36 lines
528 B
SCSS
8 months ago
|
$optionW: 120px;
|
||
|
$optionH: 120px;
|
||
|
|
||
|
.answer-options {
|
||
|
height: calc(100vh - 66px);
|
||
|
}
|
||
|
|
||
|
.option {
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
width: $optionW;
|
||
|
height: $optionH;
|
||
|
border-radius: 10rpx;
|
||
|
font-size: $uni-font-size-lg;
|
||
|
font-weight: bold;
|
||
|
background-color: $uni-bg-color-grey;
|
||
|
|
||
|
&.select {
|
||
|
background-color: $uni-color-primary;
|
||
|
color: #fff;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.handle-icon {
|
||
|
+ .handle-icon {
|
||
|
margin-left: 20px;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.option {
|
||
|
&.selected {
|
||
|
color: #fff;
|
||
|
background-color: $uni-color-primary;
|
||
|
}
|
||
|
}
|