Files
frontend-app-authoring/src/course-outline/paste-button/PasteButton.scss
Navin Karkera 815ddbe94e feat: copy & paste units
refactor: paste component

fix: lint issues and delete unused hook

test: add test

fix: update api for npm broadcast channel
2024-02-05 14:01:38 -05:00

21 lines
356 B
SCSS

// adds bottom arrow to popup link
.popup-link {
position: relative;
&::after {
content: "";
position: absolute;
top: 100%;
left: 50%;
width: 0;
height: 0;
border-top: solid .5rem white;
border-left: solid .5rem transparent;
border-right: solid .5rem transparent;
}
}
.cursor-help {
cursor: help !important;
}