fast-vue3-ui
Version:
<h1 align="center"> fast-ui </h1>
40 lines (39 loc) • 683 B
CSS
.k-link {
display: inline-flex;
flex-direction: row;
align-items: center;
justify-content: center;
vertical-align: middle;
position: relative;
text-decoration: none;
outline: none;
cursor: pointer;
padding: 0;
font-size: 14px;
font-weight: 500;
}
.k-link--primary {
color: #409eff;
}
.k-link--primary:hover {
color: #66b1ff;
}
.k-link.is-disabled {
cursor: not-allowed;
}
.k-link.is-disabled:hover {
cursor: not-allowed;
color: #a0cfff;
}
.k-link--primary.is-disabled {
color: #a0cfff;
}
.k-link.is-underline:hover:after {
content: "";
position: absolute;
left: 0;
right: 0;
height: 0;
bottom: 0;
border-bottom: 1px solid #409eff;
}