diff --git a/src/components/CertificateInfoRow.vue b/src/components/CertificateInfoRow.vue
index 2b37d6e..df726eb 100644
--- a/src/components/CertificateInfoRow.vue
+++ b/src/components/CertificateInfoRow.vue
@@ -2,7 +2,10 @@
@@ -82,6 +85,7 @@ table {
}
.cert-icon {
+ position: relative;
font-size: 70px;
color: $link-color;
opacity: 0.5;
@@ -92,6 +96,18 @@ table {
}
}
+.award-icon {
+ position: absolute;
+ font-size: 0.5em;
+ bottom: 20%;
+ left: 12%;
+ color: white;
+
+ .dark & {
+ color: $dark-bg;
+ }
+}
+
.link-icon {
font-size: 20px;
margin-left: 50px !important;
diff --git a/src/icon.js b/src/icon.js
index 5ac3511..e78992f 100644
--- a/src/icon.js
+++ b/src/icon.js
@@ -30,7 +30,8 @@ import {
faUpload,
faCopy,
faCheck,
- faFileContract,
+ faFile,
+ faAward,
faLink,
} from "@fortawesome/free-solid-svg-icons";
@@ -61,7 +62,8 @@ library.add(
faUpload,
faCopy,
faCheck,
- faFileContract,
+ faFile,
+ faAward,
faLink,
);