@arco-themes/vue-hundun2 0.0.1
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/README.md +24 -0
- package/component.less +2 -0
- package/components/Button/index.css +1 -0
- package/components/Button/index.less +9 -0
- package/config.d.ts +0 -0
- package/css/arco.css +6 -0
- package/index.less +12 -0
- package/package.json +19 -0
- package/theme.css +509 -0
- package/theme.less +1430 -0
- package/tokens.less +3946 -0
- package/variables.less +804 -0
package/README.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
# @arco-themes/vue-hundun2
|
|
4
|
+
|
|
5
|
+
Powered By [ArcoDesign](https://arco.design/)
|
|
6
|
+
|
|
7
|
+
[Click to Preview](https://arco.design/themes/design/19010)
|
|
8
|
+
|
|
9
|
+
## Installation
|
|
10
|
+
|
|
11
|
+
```
|
|
12
|
+
npm install @arco-themes/vue-hundun2
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Changelog
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
- 0.0.1
|
|
19
|
+
|
|
20
|
+
Release:
|
|
21
|
+
- Button:
|
|
22
|
+
- Color:
|
|
23
|
+
|
|
24
|
+
|
package/component.less
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.arco-btn{border-radius:10px;box-shadow:inset 2px 2px 5px rgba(255,255,255,0.5),inset -2px -2px 5px rgba(0,0,0,0.5)}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
.@{btn-prefix-cls} {
|
|
2
|
+
border-radius: 10px;
|
|
3
|
+
box-shadow:
|
|
4
|
+
inset 2px 2px 5px rgba(255, 255, 255, 0.5),
|
|
5
|
+
inset -2px -2px 5px rgba(0, 0, 0, 0.5);
|
|
6
|
+
// box-shadow:
|
|
7
|
+
// inset 1px 1px 6px rgba(255, 255, 255, 0.1),
|
|
8
|
+
// inset -1px -1px 6px rgba(255, 255, 255, 0.1);
|
|
9
|
+
}
|
package/config.d.ts
ADDED
|
File without changes
|