SCSS Framework (Beta)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
242 B

8 months ago
  1. .component-linkfx {
  2. &:before {
  3. position: absolute;
  4. content: '';
  5. bottom: .29rem;
  6. border-bottom: 1px solid currentColor;
  7. width: 0;
  8. height: 1px;
  9. transition: width .25s;
  10. }
  11. &:hover:before {
  12. width: 100%;
  13. }
  14. }