19 lines
544 B
CSS
19 lines
544 B
CSS
div a.link {
|
|
align-items: center;
|
|
background-color: var(--Component-Button-Brand-Tertiary-Fill-Default);
|
|
border: 2px solid var(--Component-Button-Brand-Tertiary-Border-Default);
|
|
border-radius: var(--Corner-radius-rounded);
|
|
color: var(--Text-Inverted);
|
|
cursor: pointer;
|
|
display: flex;
|
|
gap: var(--Space-x1);
|
|
height: 48px;
|
|
justify-content: center;
|
|
padding: var(--Space-x2) var(--Space-x4);
|
|
transition: background-color 200ms ease;
|
|
|
|
&:hover {
|
|
background-color: var(--Component-Button-Brand-Tertiary-Fill-Hover);
|
|
}
|
|
}
|