New components, convert hooks to components, bug fixes.

This commit is contained in:
Mike Cao 2020-08-03 23:20:35 -07:00
parent a2db27894f
commit 9d8a2406e1
21 changed files with 330 additions and 181 deletions

View 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;
}