diff --git a/app.vue b/app/app.vue similarity index 100% rename from app.vue rename to app/app.vue diff --git a/assets/css/base.scss b/app/assets/css/base.scss similarity index 100% rename from assets/css/base.scss rename to app/assets/css/base.scss diff --git a/assets/css/main.scss b/app/assets/css/main.scss similarity index 89% rename from assets/css/main.scss rename to app/assets/css/main.scss index 66b37ec..bea565a 100644 --- a/assets/css/main.scss +++ b/app/assets/css/main.scss @@ -1,7 +1,7 @@ -@import "base.scss"; +@use "base.scss"; .prose article { - @include headings { + @include base.headings { & > a:hover, & > a:active { text-decoration: underline; diff --git a/assets/images/moon.svg b/app/assets/images/moon.svg similarity index 100% rename from assets/images/moon.svg rename to app/assets/images/moon.svg diff --git a/assets/images/star.svg b/app/assets/images/star.svg similarity index 100% rename from assets/images/star.svg rename to app/assets/images/star.svg diff --git a/assets/images/sun.svg b/app/assets/images/sun.svg similarity index 100% rename from assets/images/sun.svg rename to app/assets/images/sun.svg diff --git a/components/BlogStatBox.vue b/app/components/BlogStatBox.vue similarity index 100% rename from components/BlogStatBox.vue rename to app/components/BlogStatBox.vue diff --git a/components/ButtonToTop.vue b/app/components/ButtonToTop.vue similarity index 100% rename from components/ButtonToTop.vue rename to app/components/ButtonToTop.vue diff --git a/components/ColourPicker.vue b/app/components/ColourPicker.vue similarity index 100% rename from components/ColourPicker.vue rename to app/components/ColourPicker.vue diff --git a/components/CommitStatBox.vue b/app/components/CommitStatBox.vue similarity index 57% rename from components/CommitStatBox.vue rename to app/components/CommitStatBox.vue index 1292bac..939867f 100644 --- a/components/CommitStatBox.vue +++ b/app/components/CommitStatBox.vue @@ -1,20 +1,30 @@