Files
rio/frontend/css/components/scroll_target.scss
T
2025-03-21 12:39:48 +01:00

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;
}
}