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.
38 lines
497 B
38 lines
497 B
7 years ago
|
.option {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: space-between;
|
||
|
padding: 5px 10px;
|
||
|
width: 100%;
|
||
|
cursor: default;
|
||
|
|
||
|
&:hover {
|
||
|
background-color: #f9f9f9;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.isSelected {
|
||
|
background-color: #e2e2e2;
|
||
|
|
||
|
&.isMobile {
|
||
|
background-color: inherit;
|
||
|
|
||
|
.iconContainer {
|
||
|
color: $primaryColor;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.isDisabled {
|
||
|
background-color: #aaa;
|
||
|
}
|
||
|
|
||
|
.isMobile {
|
||
|
height: 50px;
|
||
|
border-bottom: 1px solid $borderColor;
|
||
|
|
||
|
&:last-child {
|
||
|
border: none;
|
||
|
}
|
||
|
}
|