Files
black7/src/components/PrimaryButton.module.css
T

17 lines
259 B
CSS
Raw Normal View History

.button {
width: 100%;
padding: 1rem;
background: var(--color-blue);
border: none;
border-radius: 1rem;
font-size: 1.25rem;
font-weight: 600;
cursor: pointer;
}
.button:disabled {
opacity: 0.45;
box-shadow: none;
cursor: not-allowed;
}