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

24 lines
461 B
CSS
Raw Normal View History

.button {
width: 100%;
padding: 1rem;
background: #a8d5e8;
border: none;
border-radius: 1rem;
font-size: 1.25rem;
font-weight: 600;
cursor: pointer;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
transition: transform 80ms ease, box-shadow 80ms ease;
}
.button:active:not(:disabled) {
transform: translateY(2px);
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.button:disabled {
opacity: 0.45;
box-shadow: none;
cursor: not-allowed;
}