Skip to content
Snippets Groups Projects
cta-link-button.scss 579 B
Newer Older
  • Learn to ignore specific revisions
  • :host {
      display: block;
    }
    
    .hy-cta-link-button-container {
      display: flex;
    }
    
    .hy-cta-link-button {
      align-items: center;
      background-color: transparent;
      border: solid 2px var(--brand-main);
      color: var(--brand-main);
      cursor: pointer;
      display: flex;
      font-family: var(--main-font-family);
      font-size: 0.9375rem;
      justify-content: center;
      height: 100%;
      max-width: 250px;
      position: relative;
      text-decoration: none;
    
      &__text {
        margin: 12px 0px 12px 16px;
      }
      &__link-icon {
        margin: 12px 16px;
    
        svg {
          fill: var(--brand-main);
        }
      }
    }