16 lines
249 B
CSS
16 lines
249 B
CSS
.button {
|
|
align-items: center;
|
|
background: none;
|
|
border: none;
|
|
cursor: pointer;
|
|
display: flex;
|
|
gap: var(--Space-x1);
|
|
padding: var(--Space-x1) 0;
|
|
text-align: left;
|
|
width: 100%;
|
|
}
|
|
|
|
.text {
|
|
color: var(--Text-Interactive-Default);
|
|
}
|