16 lines
316 B
CSS
16 lines
316 B
CSS
.buttonLink {
|
|
border-radius: var(--Corner-radius-rounded);
|
|
border-width: 2px;
|
|
border-style: solid;
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: var(--Space-x05);
|
|
|
|
&:focus-visible {
|
|
outline: 2px auto -webkit-focus-ring-color;
|
|
outline-offset: 4px;
|
|
}
|
|
}
|