urfu-ui-kit-vanilla 1.0.56 → 1.0.58

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "UrFU UI-Kit for Vanilla Web",
4
4
  "license": "UNLICENSED",
5
5
  "private": false,
6
- "version": "1.0.56",
6
+ "version": "1.0.58",
7
7
  "type": "module",
8
8
  "scripts": {
9
9
  "start": "vite",
@@ -21,7 +21,6 @@
21
21
  "src/main.d.ts",
22
22
  "src/main.css",
23
23
  "src/ui-icons.css",
24
- "src/fonts/*",
25
- "src/js/*"
24
+ "src/fonts/*"
26
25
  ]
27
26
  }
package/src/main.css CHANGED
@@ -3613,6 +3613,7 @@ h5,
3613
3613
  border-bottom: 8px solid #1E4391;
3614
3614
  }
3615
3615
  .u-link {
3616
+ text-decoration: none;
3616
3617
  color: #1E4391;
3617
3618
  cursor: pointer;
3618
3619
  }
package/src/js/upward.js DELETED
@@ -1,13 +0,0 @@
1
- window.addEventListener('scroll', () => {
2
- var scroll = document.querySelector('.u-upward');
3
- scroll.classList.toggle("active", window.scrollY > 500)
4
- })
5
-
6
- const uScrollTop = () => {
7
- window.scrollTo({
8
- top: 0,
9
- behavior: 'smooth'
10
- })
11
- }
12
-
13
- export default uScrollTop