udemy-react-course/react-chap9/src/components/UI/Button.module.css

19 lines
260 B
CSS

.button {
font: inherit;
border: 1px solid #4f005f;
background: #4f005f;
color: white;
padding: 0.25rem 1rem;
cursor: pointer;
}
.button:hover,
.button:active {
background: #741188;
border-color: #741188;
}
.button:focus {
outline: none;
}