Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/themefisher/bigspring-hugo-startup-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/assets
diff options
context:
space:
mode:
authorback2root <back2root@users.noreply.github.com>2020-11-03 23:21:46 +0300
committerback2root <back2root@users.noreply.github.com>2020-11-03 23:21:46 +0300
commita47cccd93de0d8b04e3158c2b487488ed861cf40 (patch)
tree0b92e6060f7b5c78ec357391370890b162a77c69 /assets
parent58a602dbe1fd9f80222cea8ea2ec60b884875dbb (diff)
Add empty scss stylesheet for projects to extend
Having a scss style sheet file, that is guranteed empty within the template, allows projects to add aditional style definitions in a clean and updatefriendly way.
Diffstat (limited to 'assets')
-rw-r--r--assets/scss/_custom.scss2
-rw-r--r--assets/scss/style.scss4
2 files changed, 5 insertions, 1 deletions
diff --git a/assets/scss/_custom.scss b/assets/scss/_custom.scss
new file mode 100644
index 0000000..e342c1b
--- /dev/null
+++ b/assets/scss/_custom.scss
@@ -0,0 +1,2 @@
+// This file is empty within the template
+// You can use it to override CSS from within your project \ No newline at end of file
diff --git a/assets/scss/style.scss b/assets/scss/style.scss
index af15370..d6b46a6 100644
--- a/assets/scss/style.scss
+++ b/assets/scss/style.scss
@@ -21,4 +21,6 @@ VERSION: Versoin Number
@import 'templates/navigation.scss';
-@import 'templates/main.scss'; \ No newline at end of file
+@import 'templates/main.scss';
+
+@import 'custom'; \ No newline at end of file