15 lines
242 B
CSS
15 lines
242 B
CSS
.btn {
|
|
padding: 0.5rem 1rem;
|
|
font-size: 1rem;
|
|
border: none;
|
|
border-radius: var(--radius-md);
|
|
cursor: pointer;
|
|
color: var(--color-text);
|
|
transition: opacity 0.15s ease;
|
|
}
|
|
|
|
.btn:disabled {
|
|
opacity: 0.6;
|
|
cursor: not-allowed;
|
|
}
|