mirror of
https://github.com/SrIzan10/analytics.srizan.ml.git
synced 2026-05-01 10:35:15 +00: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;
|
|
}
|