-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add .gitignore files for vault and pages
- Added a new .gitignore file in the "vault" directory to ignore certain files except for specific ones. - Added a new .gitignore file in the "pages/vault" directory to ignore all files except for ".gitignore" and ".astro". - Updated the import URL for the Nunito font in "_global.scss" to use a protocol-relative URL. - Removed the text-align property from the @mixin "font-styles" in "_mixins.scss".
- Loading branch information
1 parent
7b906fd
commit 3553b6c
Showing
4 changed files
with
23 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# Ignore everything | ||
* | ||
|
||
# Except these files | ||
!.gitignore | ||
!.astro |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
@mixin font-styles($size, $weight: 700, $line-height: 1, $align: center, $margin-bottom: 1em) { | ||
@mixin font-styles($size, $weight: 700, $line-height: 1, $margin-bottom: 1em) { | ||
font-size: $size; | ||
font-weight: $weight; | ||
line-height: $line-height; | ||
text-align: $align; | ||
margin-bottom: $margin-bottom; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
.obsidian/* | ||
!.obsidian/app.json | ||
!.obsidian/appearance.json | ||
!.obsidian/config | ||
!.obsidian/community-plugins.json | ||
!.obsidian/core-plugins.json | ||
!.obsidian/graph.json | ||
!.obsidian/hotkeys.json |