mirror of
https://github.com/umami-software/umami.git
synced 2025-12-08 05:12:36 +01:00
15 lines
236 B
CSS
15 lines
236 B
CSS
.button {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
background: #f5f5f5;
|
|
padding: 8px 16px;
|
|
border-radius: 4px;
|
|
border: 0;
|
|
outline: none;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.button:hover {
|
|
background: #eaeaea;
|
|
}
|