blob: 746e55e65380dcecc8bb1d573be564d27bf6c589 (
plain)
1
2
3
4
5
6
7
8
9
|
.card {
border-radius: var(--mantine-radius-sm);
border: 1px solid var(--mantine-color-gray-7);
&:hover {
box-shadow: var(--mantine-shadow-md);
border: 1px solid $color-brand-5;
}
}
|