@@ -102,14 +102,14 @@ export default {
.lbl-toggle {
display: block;
- padding: 1rem;
+ padding: 0.25rem;
cursor: pointer;
border-radius: 7px;
transition: all 0.25s ease-out;
text-align: left;
color:$bg-with-opacity;
- h2 {
+ h3 {
margin: 0;
padding: 0;
display: inline;
diff --git a/src/components/Item.vue b/src/components/Item.vue
index be95d308..137bd28b 100644
--- a/src/components/Item.vue
+++ b/src/components/Item.vue
@@ -52,22 +52,20 @@ export default {
if (isOverflowing) {
tileElem.className += ' is-overflowing';
}
- }
+ } // Not from present me to past me: WTF?!
},
};
-
diff --git a/src/components/PageTitle.vue b/src/components/PageTitle.vue
index 70ee39fe..80aef00c 100644
--- a/src/components/PageTitle.vue
+++ b/src/components/PageTitle.vue
@@ -1,7 +1,7 @@
-
Alicia App
- Dashboard of all the things
+ Networking Services
+ Local network management and moniroting
diff --git a/src/styles/color-pallet.scss b/src/styles/color-pallet.scss
index e32a1317..93507914 100644
--- a/src/styles/color-pallet.scss
+++ b/src/styles/color-pallet.scss
@@ -2,10 +2,11 @@
/* Core Pallet */
$background: #0b1021;
-$ascent: #0875c3;
+$ascent: #5cabca;
/* Action Colors */
$transparent-black: #0000008a;
+$overflow-ellipse: #283e51;
/* Modified Colors */
$bg-with-opacity: rgba($background, 0.8);
diff --git a/src/styles/global-styles.scss b/src/styles/global-styles.scss
index b187870e..c1453641 100644
--- a/src/styles/global-styles.scss
+++ b/src/styles/global-styles.scss
@@ -1,22 +1,23 @@
-@import url('https://fonts.googleapis.com/css?family=Montserrat&display=swap');
+@font-face {
+ font-family: 'Inconsolata';
+ src: url('./assets/Inconsolata-Light.ttf');
+}
+
html {
margin: 0;
padding: 0;
}
body {
- margin: 0;
- padding: 0;
- background: #282a32;
- font-family: 'Montserrat', sans-serif;
+ font-family: 'Inconsolata', sans-serif;
}
h1, h2, h3, h4, h5 {
- font-family: 'Montserrat', sans-serif;
+ font-family: 'Inconsolata', sans-serif;
}
p, a, span, div, input {
- font-family: 'Montserrat', sans-serif;
+ font-family: 'Inconsolata', sans-serif;
}
\ No newline at end of file