All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.scss.helpers._chevron-link.scss Maven / Gradle / Ivy

Go to download

Orange Boosted with Bootstrap is a Bootstrap based, Orange branded accessible and ergonomic components library.

The newest version!
// Boosted mod
.link-chevron {
  font-weight: $font-weight-bold;
  text-decoration: if($link-decoration == none, null, none);
  background-color: transparent;

  &::after {
    display: inline-block;
    width: $linked-chevron-icon-width;
    height: $linked-chevron-icon-height;
    margin-left: $linked-chevron-margin-left;
    vertical-align: middle;
    content: "";
    background-color: currentcolor;
    mask: var(--#{$prefix}chevron-icon) no-repeat;
    transform: $linked-chevron-transform;
  }

  &:hover {
    text-decoration: $link-decoration;
  }
}
// End mod




© 2015 - 2024 Weber Informatics LLC | Privacy Policy