28 lines
437 B
SCSS
28 lines
437 B
SCSS
.primaryLink {
|
|
position: relative;
|
|
}
|
|
|
|
.input {
|
|
cursor: var(--custom-cursor, pointer);
|
|
margin-bottom: 1rem;
|
|
padding-right: 3.5rem;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.moreMenu, .copy {
|
|
position: absolute;
|
|
right: 0.5rem;
|
|
top: 50%;
|
|
transform: translate(0, -50%);
|
|
z-index: 1;
|
|
}
|
|
|
|
.title {
|
|
font-weight: var(--font-weight-semibold);
|
|
color: var(--color-text-secondary);
|
|
}
|
|
|
|
.share {
|
|
font-weight: var(--font-weight-semibold);
|
|
}
|