umami/components/Button.module.css

17 lines
281 B
CSS
Raw Normal View History

.button {
display: flex;
justify-content: center;
align-items: center;
2020-08-06 08:03:07 +02:00
font-size: var(--font-size-normal);
background: var(--gray100);
2020-08-06 04:04:02 +02:00
padding: 8px 16px;
border-radius: 4px;
border: 0;
outline: none;
cursor: pointer;
}
.button:hover {
background: #eaeaea;
}