mirror of
https://github.com/umami-software/umami.git
synced 2025-12-08 05:12:36 +01:00
16 lines
281 B
CSS
16 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;
|
|
}
|