44 lines
470 B
SCSS
44 lines
470 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);
|
|
}
|
|
}
|
|
|
|
.status-icon {
|
|
width: 20px;
|
|
height: 20px;
|
|
}
|
|
|
|
.status-tag {
|
|
&.tag-0 {
|
|
color: #ff3d60;
|
|
}
|
|
|
|
&.tag-1 {
|
|
color: #f00044;
|
|
}
|
|
|
|
&.tag-2 {
|
|
color: #40ae36;
|
|
}
|
|
|
|
&.tag-3 {
|
|
color: #808389;
|
|
}
|
|
|
|
&.tag-4 {
|
|
color: $theme-color-500;
|
|
}
|
|
|
|
&.tag-5 {
|
|
color: #808389;
|
|
}
|
|
|
|
&.tag-6 {
|
|
color: #fd8702;
|
|
}
|
|
}
|