nf
This commit is contained in:
@@ -0,0 +1,47 @@
|
||||
.card {
|
||||
@include mixins.reset-button;
|
||||
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 12px;
|
||||
|
||||
width: 160px;
|
||||
height: 160px;
|
||||
|
||||
background: variables.$bg-default;
|
||||
border: 1px solid variables.$border-default;
|
||||
border-radius: variables.$radius-lg;
|
||||
box-shadow: var(--shadow-sm);
|
||||
|
||||
color: variables.$text-secondary;
|
||||
|
||||
cursor: pointer;
|
||||
transition:
|
||||
transform 0.15s ease,
|
||||
box-shadow 0.15s ease,
|
||||
border-color 0.15s ease,
|
||||
color 0.15s ease;
|
||||
|
||||
&:hover {
|
||||
transform: translateY(-3px);
|
||||
box-shadow: var(--shadow-md);
|
||||
color: variables.$text-primary;
|
||||
}
|
||||
|
||||
&.accent {
|
||||
background: variables.$purple-50;
|
||||
border-color: variables.$purple-100;
|
||||
color: variables.$purple-400;
|
||||
|
||||
&:hover {
|
||||
background: variables.$purple-100;
|
||||
border-color: variables.$purple-400;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.label {
|
||||
@include typography.font-body-s;
|
||||
}
|
||||
Reference in New Issue
Block a user