Skip to content

Commit

Permalink
feat: general features for global css (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
gablisb0a authored Mar 6, 2024
1 parent 9d355b9 commit f751478
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/azion-dark/custom/_focus.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
a {
@include focused();
}
6 changes: 6 additions & 0 deletions src/azion-dark/custom/_scrollbehavior.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/**
* Enable smooth scrolling on the whole document
*/
html {
scroll-behavior: smooth;
}
3 changes: 3 additions & 0 deletions src/azion-light/custom/_focus.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
a {
@include focused();
}
6 changes: 6 additions & 0 deletions src/azion-light/custom/_scrollbehavior.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/**
* Enable smooth scrolling on the whole document
*/
html {
scroll-behavior: smooth;
}

0 comments on commit f751478

Please sign in to comment.