mirror of
https://github.com/umami-software/umami.git
synced 2026-02-06 05:37:20 +01:00
Website edit functionality.
This commit is contained in:
parent
30b87bc4c4
commit
00e232fee8
63 changed files with 301 additions and 94 deletions
23
components/interface/Link.module.css
Normal file
23
components/interface/Link.module.css
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
.link,
|
||||
.link:active,
|
||||
.link:visited {
|
||||
position: relative;
|
||||
color: #2c2c2c;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.link:before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
bottom: -2px;
|
||||
width: 0;
|
||||
height: 2px;
|
||||
background: #2680eb;
|
||||
opacity: 0.5;
|
||||
transition: width 100ms;
|
||||
}
|
||||
|
||||
.link:hover:before {
|
||||
width: 100%;
|
||||
transition: width 100ms;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue