Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🐛 fix(footer, header, connect): retrait de l'icone target blank [DS-3715] #872

Merged
merged 2 commits into from
Jan 30, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/component/connect/style/module/_default.scss
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@
background-size: 2.5em 3em;
}

@include target-blank(true) {
@include after(none);
}

&__login,
&__brand {
line-height: 1;
Expand Down
3 changes: 3 additions & 0 deletions src/component/footer/style/module/_default.scss
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@

&-link {
@include display-flex;
@include target-blank(true) {
@include after(none);
}
}

/**
Expand Down
6 changes: 6 additions & 0 deletions src/component/footer/style/module/_partners.scss
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,12 @@
}
}

&__partners-link {
@include target-blank(true) {
@include after(none);
}
}

/**
* Container des logos partenaires (principaux et secondaires)
*/
Expand Down
4 changes: 4 additions & 0 deletions src/component/header/style/module/_brand.scss
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,10 @@
@include margin-x(0, lg);
@include size(100%);

@include target-blank {
@include after(none);
}

@include media-query.respond-from(lg) {
width: auto;
}
Expand Down