1
0
mirror of synced 2026-01-29 12:00:58 -05:00
Files
docs/stylesheets/bump-link.scss
Mike Surowiec 83e33cc9bb Quiet sass warnings (#19960)
* npm install sass@latest

* add quietDeps: true to webpack config

* prevent error message from hmr abort, cleans up the log

Co-authored-by: Sarah Schneider <sarahs@github.com>
2021-06-16 19:47:01 +00:00

25 lines
461 B
SCSS

@use "sass:math";
// Arrow links
.Bump-link-symbol {
display: inline-block;
transition: math.div($transition-time, 2);
transform: translateX(0);
}
.Bump-link:hover .Bump-link-symbol {
transform: translateX(3px);
}
.Bump-link--hover .Bump-link-symbol {
color: inherit;
opacity: 0;
transition: math.div($transition-time, 2);
transform: translateX(0);
}
.Bump-link--hover:hover .Bump-link-symbol {
opacity: 1;
transform: translateX(3px);
}