unika-components 1.0.110 → 1.0.112

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.
@@ -15,13 +15,26 @@ button.uni-text-component {
15
15
  white-space: pre-wrap;
16
16
  }
17
17
 
18
- .slot-number {
19
- position: absolute;
20
- bottom: 2px;
21
- left: 7px;
22
- font-size: 12px;
23
- color: #666
24
- }
18
+ .uni-video-component {
19
+ position: relative;
20
+ text-align: center;
21
+ }
22
+ .play-pause-button {
23
+ position: absolute;
24
+ top: 50%;
25
+ left: 50%;
26
+ transform: translate(-50%, -50%);
27
+ cursor: pointer;
28
+ font-size: 2rem;
29
+ color: #fff;
30
+ background: rgba(0, 0, 0, 0.6);
31
+ border-radius: 50%;
32
+ padding: 10px;
33
+ transition: background 0.3s;
34
+ }
35
+ .play-pause-button:hover {
36
+ background: rgba(0, 0, 0, 0.8);
37
+ }
25
38
 
26
39
  #audio {
27
40
  position: absolute;
@@ -104,27 +117,6 @@ button.uni-text-component {
104
117
  }
105
118
  }
106
119
 
107
- .uni-video-component {
108
- position: relative;
109
- text-align: center;
110
- }
111
- .play-pause-button {
112
- position: absolute;
113
- top: 50%;
114
- left: 50%;
115
- transform: translate(-50%, -50%);
116
- cursor: pointer;
117
- font-size: 2rem;
118
- color: #fff;
119
- background: rgba(0, 0, 0, 0.6);
120
- border-radius: 50%;
121
- padding: 10px;
122
- transition: background 0.3s;
123
- }
124
- .play-pause-button:hover {
125
- background: rgba(0, 0, 0, 0.8);
126
- }
127
-
128
120
  .like-button {
129
121
  display: flex;
130
122
  flex-direction: column;
@@ -147,9 +139,12 @@ button.uni-text-component {
147
139
  color: #333;
148
140
  }
149
141
 
150
- .effect {
151
- width: 100%;
152
- height: 100%;
142
+ .slot-number {
143
+ position: absolute;
144
+ bottom: 2px;
145
+ left: 7px;
146
+ font-size: 12px;
147
+ color: #666
153
148
  }
154
149
 
155
150
  .ant-input-number {
@@ -187,6 +182,11 @@ button.uni-text-component {
187
182
  vertical-align: top;
188
183
  }
189
184
 
185
+ .effect {
186
+ width: 100%;
187
+ height: 100%;
188
+ }
189
+
190
190
  .swiper-warp {
191
191
  width: 100%;
192
192
  height: 100%;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "unika-components",
3
- "version": "1.0.110",
3
+ "version": "1.0.112",
4
4
  "private": false,
5
5
  "main": "dist/unika-components.umd.js",
6
6
  "module": "dist/unika-components.esm.js",