Skip to content

Commit

Permalink
Lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
andmor- committed Aug 23, 2024
1 parent 60b2d29 commit 49d3b8f
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions scss/modules/buttons.scss
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,26 @@ a.news-more-link {
}
}

.btn.btn-outline-primary {
background: transparent url("../images/arrow-right-blue2.svg") no-repeat right 18px center/15px;
border-color: $dark-blue-02;
color: $dark-blue-02;
float: right;
margin-right: 20px;
padding-left: 12px;
text-align: start;
transition: background-position 0.2s, background-color 0.2s, opacity 0.2s;
width: inherit;

&:hover,
&:focus {
background: $dark-blue-02 url("../images/arrow-right-white.svg") no-repeat right 13px center/15px;
color: $white;
opacity: 0.75;
transition: background-position 0.2s, background-color 0.2s, opacity 0.2s;
}
}

// Navigation pages paragraph button. React on hover over the whole paragraph
.paragraph--type--navigation-entry,
.paragraph--type--navigation-entry-alternative {
Expand Down Expand Up @@ -241,30 +261,10 @@ a.news-more-link {
}

.btn.btn-outline-primary {
background: $dark-blue-02 url(../images/arrow-right-white.svg) no-repeat right 13px center/15px;
background: $dark-blue-02 url("../images/arrow-right-white.svg") no-repeat right 13px center/15px;
color: $white;
opacity: 0.75;
transition: background-position 0.2s, background-color 0.2s, opacity 0.2s;
}
}
}

.btn.btn-outline-primary {
margin-right: 20px;
padding-left: 12px;
text-align: start;
float: right;
width: inherit;
border-color: $dark-blue-02;
transition: background-position 0.2s, background-color 0.2s, opacity 0.2s;
background: transparent url(../images/arrow-right-blue2.svg) no-repeat right 18px center/15px;
color: $dark-blue-02;

&:hover,
&:focus {
background: $dark-blue-02 url(../images/arrow-right-white.svg) no-repeat right 13px center/15px;
color: $white;
opacity: 0.75;
transition: background-position 0.2s, background-color 0.2s, opacity 0.2s;
}
}

0 comments on commit 49d3b8f

Please sign in to comment.