umami/components/Button.module.css

16 lines
236 B
CSS
Raw Normal View History

.button {
display: flex;
justify-content: center;
align-items: center;
background: #f5f5f5;
2020-08-06 04:04:02 +02:00
padding: 8px 16px;
border-radius: 4px;
border: 0;
outline: none;
cursor: pointer;
}
.button:hover {
background: #eaeaea;
}