mirror of
https://github.com/umami-software/umami.git
synced 2026-02-05 13:17:19 +01:00
New components, convert hooks to components, bug fixes.
This commit is contained in:
parent
a2db27894f
commit
9d8a2406e1
21 changed files with 330 additions and 181 deletions
22
components/Button.module.css
Normal file
22
components/Button.module.css
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
.button {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
background: #f5f5f5;
|
||||
padding: 4px 8px;
|
||||
border-radius: 4px;
|
||||
border: 0;
|
||||
outline: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.button:hover {
|
||||
background: #eaeaea;
|
||||
}
|
||||
|
||||
.button svg {
|
||||
display: block;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
margin-right: 8px;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue