Convert buttons to links.
This commit is contained in:
@@ -56,7 +56,25 @@ select {
|
||||
a,
|
||||
a:active,
|
||||
a:visited {
|
||||
color: var(--primary400);
|
||||
position: relative;
|
||||
color: #2c2c2c;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
bottom: -2px;
|
||||
width: 0;
|
||||
height: 2px;
|
||||
background: #2680eb;
|
||||
opacity: 0.5;
|
||||
transition: width 100ms;
|
||||
}
|
||||
|
||||
a:hover:before {
|
||||
width: 100%;
|
||||
transition: width 100ms;
|
||||
}
|
||||
|
||||
input[type='text'],
|
||||
|
||||
Reference in New Issue
Block a user