Skip to content

Commit

Permalink
Merge pull request #52 from radogado/gh-pages
Browse files Browse the repository at this point in the history
,
  • Loading branch information
radogado committed May 6, 2023
2 parents e1013c2 + e9c3bda commit 37c0f6e
Show file tree
Hide file tree
Showing 24 changed files with 3,420 additions and 3,253 deletions.
1 change: 1 addition & 0 deletions components/button/button.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion components/button/button.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions components/button/button.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ button.n-btn,
a.n-btn[href],
.n-type a.n-btn[href] {
font-size: inherit;
text-align: initial;
line-height: var(--nui-line-height);
min-height: var(--nui-line-height-em);
text-decoration: none;
Expand Down
2 changes: 1 addition & 1 deletion components/parallax/parallax.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
let updateParallax = () => {
document.querySelectorAll(".n-parallax").forEach((el) => {
let parent = el.parentElement;
let scroll_offset = parent.scrollHeight > parent.offsetHeight ? Math.abs(parent.getBoundingClientRect().y) : document.body.scrollTop || document.documentElement.scrollTop;
let scroll_offset = parent.scrollHeight > parent.offsetHeight ? parent.getBoundingClientRect().y : document.body.scrollTop || document.documentElement.scrollTop;
el.style.setProperty("--scrollparallax", scroll_offset * parallaxSpeed);
});
};
Expand Down
3 changes: 2 additions & 1 deletion components/table/table.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion components/table/table.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions components/table/table.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
display: table;
width: 100%;
overflow: hidden;
table-layout: fixed;
}

td,
Expand Down
103 changes: 89 additions & 14 deletions css/guide.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion css/guide.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 37c0f6e

Please sign in to comment.