diff --git a/.gitignore b/.gitignore index 996c3e4..645e7bf 100644 --- a/.gitignore +++ b/.gitignore @@ -26,3 +26,4 @@ frontend/node_modules/ # Added by cargo /target +.antigravitycli/ diff --git a/frontend/index.html b/frontend/index.html index ca20c57..3386746 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -4,6 +4,8 @@
+ +
+ }
+}
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
+}