feat(LOY-195): digital team member card button on my pages overview
This commit is contained in:
+30
@@ -0,0 +1,30 @@
|
||||
.card {
|
||||
padding: var(--Space-x2) var(--Space-x15);
|
||||
border-radius: var(--Corner-radius-md);
|
||||
border: 0;
|
||||
cursor: pointer;
|
||||
background: var(--Surface-Brand-Primary-1-OnSurface-Default);
|
||||
color: var(--Text-Brand-OnPrimary-3-Accent);
|
||||
|
||||
&:focus,
|
||||
&:hover {
|
||||
background:
|
||||
linear-gradient(
|
||||
0deg,
|
||||
rgb(255 255 255 / 10%) 0%,
|
||||
rgb(255 255 255 / 10%) 100%
|
||||
),
|
||||
var(--Surface-Brand-Primary-1-OnSurface-Default);
|
||||
}
|
||||
&:disabled {
|
||||
background: var(--Surface-UI-Fill-Disabled);
|
||||
color: var(--Text-Interactive-Disabled);
|
||||
}
|
||||
}
|
||||
|
||||
.text {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
gap: var(--Space-x1);
|
||||
}
|
||||
Reference in New Issue
Block a user