mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 01:35:17 +01:00
17 lines
281 B
CSS
17 lines
281 B
CSS
.button {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
font-size: var(--font-size-normal);
|
|
background: var(--gray100);
|
|
padding: 8px 16px;
|
|
border-radius: 4px;
|
|
border: 0;
|
|
outline: none;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.button:hover {
|
|
background: #eaeaea;
|
|
}
|