31 lines
534 B
CSS
31 lines
534 B
CSS
.link {
|
|
display: flex;
|
|
height: 40px;
|
|
justify-content: center;
|
|
align-items: center;
|
|
padding: 0 14px;
|
|
gap: 6px;
|
|
text-decoration: none;
|
|
border-radius: 4px;
|
|
color: #1d2129;
|
|
font-size: 16px;
|
|
font-weight: 500;
|
|
line-height: 22px;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
transition:
|
|
background-color 0.2s ease,
|
|
color 0.2s ease;
|
|
|
|
@mixin hover {
|
|
background-color: #eef4ff;
|
|
color: #1874ff;
|
|
}
|
|
|
|
&[data-active] {
|
|
background-color: #1874ff;
|
|
color: #ffffff;
|
|
}
|
|
}
|