26 lines
453 B
SCSS
26 lines
453 B
SCSS
.user-dashboard {
|
|
&.guarantee {
|
|
.search {
|
|
&.success {
|
|
input {
|
|
border-color: green;
|
|
@include boxShadow(0px 4px 6px rgba(green, 0.3));
|
|
}
|
|
}
|
|
&.error {
|
|
input {
|
|
border-color: red;
|
|
@include boxShadow(0px 4px 6px rgba(red, 0.2));
|
|
}
|
|
}
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.switchBtns {
|
|
width: 100%;
|
|
margin-top: 5px;
|
|
}
|
|
}
|
|
}
|
|
}
|