15 lines
230 B
CSS
15 lines
230 B
CSS
.text-button {
|
|
background: none;
|
|
border: none;
|
|
color: var(--accent);
|
|
font-weight: 500;
|
|
font-size: 0.8rem;
|
|
cursor: pointer;
|
|
padding: 0.1rem 0.25rem;
|
|
}
|
|
|
|
.text-button:disabled {
|
|
opacity: 0.4;
|
|
cursor: not-allowed;
|
|
}
|