diff --git a/frontend/index.html b/frontend/index.html index 550b2da..3386746 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -5,6 +5,7 @@ +
+ }
+}
diff --git a/frontend/src/styles/components/_icon.scss b/frontend/src/styles/components/_icon.scss
new file mode 100644
index 0000000..28272fe
--- /dev/null
+++ b/frontend/src/styles/components/_icon.scss
@@ -0,0 +1,17 @@
+.csg-icon {
+ position: fixed;
+ top: 1rem;
+ right: 1rem;
+ z-index: 9999;
+ width: auto;
+ height: auto;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ padding: 0;
+
+ img {
+ width: auto;
+ height: auto;
+ }
+}
diff --git a/frontend/src/styles/main.scss b/frontend/src/styles/main.scss
index 0a2830a..bfaabff 100644
--- a/frontend/src/styles/main.scss
+++ b/frontend/src/styles/main.scss
@@ -5,6 +5,7 @@
@use "components/tickets";
@use "components/diagnostics";
@use "components/frontpage";
+@use "components/icon";
body {
background: variables.$color-bg;
@@ -68,4 +69,4 @@ body {
}
-}
\ No newline at end of file
+}