mirror of
https://github.com/rio-labs/rio.git
synced 2026-05-03 01:19:19 -05:00
22 lines
447 B
SCSS
22 lines
447 B
SCSS
.rio-scroll-target {
|
|
pointer-events: auto;
|
|
|
|
display: flex;
|
|
align-items: stretch;
|
|
gap: 0.5rem;
|
|
|
|
& > .rio-scroll-target-child-container {
|
|
flex-grow: 1;
|
|
}
|
|
|
|
// Hide the link-copy-button unless the cursor is hovering above
|
|
& > .rio-scroll-target-url-copy-button {
|
|
visibility: hidden;
|
|
}
|
|
|
|
&:hover > .rio-scroll-target-url-copy-button {
|
|
visibility: visible;
|
|
cursor: pointer;
|
|
}
|
|
}
|