29 lines
360 B
SCSS
29 lines
360 B
SCSS
.order-card {
|
|
transition: all 0.3s ease;
|
|
|
|
&:active {
|
|
transform: scale(0.98);
|
|
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
|
|
}
|
|
}
|
|
|
|
.icon {
|
|
height: 20px;
|
|
width: 20px;
|
|
}
|
|
|
|
.right {
|
|
height: 88px;
|
|
width: 88px;
|
|
}
|
|
|
|
.service-user {
|
|
background-color: rgba(67, 103, 153, 0.1);
|
|
border-radius: 5px;
|
|
color: #436799;
|
|
}
|
|
|
|
.cancel {
|
|
padding: 4px 10px;
|
|
}
|