refactor: paste component fix: lint issues and delete unused hook test: add test fix: update api for npm broadcast channel
21 lines
356 B
SCSS
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;
|
|
}
|