Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid O'Regan <doregan@gitlab.com>2022-05-11 23:26:56 +0300
committerDavid O'Regan <doregan@gitlab.com>2022-05-11 23:26:56 +0300
commit00e4a6aba0012d3b6a470392c83832303998a255 (patch)
tree0385e177aa4ae9598ae9c9c0a98bf60d286c2af4
parent5beed02c4f2e854dde01813803c8c0b26f358ca1 (diff)
parente04a76831382ef74e3a9d9598effe9749d218d39 (diff)
Merge branch 'fa-removal-404' into 'main'
Replace FontAwesome icon on 404 page See merge request gitlab-org/gitlab-docs!2644
-rw-r--r--content/404.html2
-rw-r--r--content/assets/stylesheets/404.scss2
2 files changed, 3 insertions, 1 deletions
diff --git a/content/404.html b/content/404.html
index f91f1e39..f937955b 100644
--- a/content/404.html
+++ b/content/404.html
@@ -16,7 +16,7 @@ searchbar: false
</div>
<div class="d-flex justify-content-center my-4">
<a href="javascript:history.back()" class="btn btn-outline-primary">
- <i class="fa fa-arrow-left" aria-hidden="true"></i>
+ <%= icon('arrow-left') %>
Go back
</a>
</div>
diff --git a/content/assets/stylesheets/404.scss b/content/assets/stylesheets/404.scss
index 059f066e..47eee3fd 100644
--- a/content/assets/stylesheets/404.scss
+++ b/content/assets/stylesheets/404.scss
@@ -14,9 +14,11 @@ version: 6
transition: 0.3s all;
border-color: $landing-gl-purple-500;
color: $landing-gl-purple-500;
+ fill: $landing-gl-purple-500;
&:hover {
color: $gds-white;
+ fill: $gds-white;
background-color: $landing-gl-purple-500;
}
}