unika-components 1.0.172 → 1.0.173
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/dist/unika-components.css +26 -26
- package/dist/unika-components.esm.js +375 -19115
- package/dist/unika-components.umd.js +362 -19101
- package/package.json +1 -1
|
@@ -2,6 +2,27 @@
|
|
|
2
2
|
.uni-image-component {
|
|
3
3
|
max-width: 100%;
|
|
4
4
|
}
|
|
5
|
+
|
|
6
|
+
.uni-video-component {
|
|
7
|
+
position: relative;
|
|
8
|
+
text-align: center;
|
|
9
|
+
}
|
|
10
|
+
.play-pause-button {
|
|
11
|
+
position: absolute;
|
|
12
|
+
top: 50%;
|
|
13
|
+
left: 50%;
|
|
14
|
+
transform: translate(-50%, -50%);
|
|
15
|
+
cursor: pointer;
|
|
16
|
+
font-size: 2rem;
|
|
17
|
+
color: #fff;
|
|
18
|
+
background: rgba(0, 0, 0, 0.6);
|
|
19
|
+
border-radius: 50%;
|
|
20
|
+
padding: 10px;
|
|
21
|
+
transition: background 0.3s;
|
|
22
|
+
}
|
|
23
|
+
.play-pause-button:hover {
|
|
24
|
+
background: rgba(0, 0, 0, 0.8);
|
|
25
|
+
}
|
|
5
26
|
|
|
6
27
|
.slide-guide {
|
|
7
28
|
position: absolute;
|
|
@@ -88,27 +109,6 @@ button.uni-text-component {
|
|
|
88
109
|
white-space: pre-wrap;
|
|
89
110
|
}
|
|
90
111
|
|
|
91
|
-
.uni-video-component {
|
|
92
|
-
position: relative;
|
|
93
|
-
text-align: center;
|
|
94
|
-
}
|
|
95
|
-
.play-pause-button {
|
|
96
|
-
position: absolute;
|
|
97
|
-
top: 50%;
|
|
98
|
-
left: 50%;
|
|
99
|
-
transform: translate(-50%, -50%);
|
|
100
|
-
cursor: pointer;
|
|
101
|
-
font-size: 2rem;
|
|
102
|
-
color: #fff;
|
|
103
|
-
background: rgba(0, 0, 0, 0.6);
|
|
104
|
-
border-radius: 50%;
|
|
105
|
-
padding: 10px;
|
|
106
|
-
transition: background 0.3s;
|
|
107
|
-
}
|
|
108
|
-
.play-pause-button:hover {
|
|
109
|
-
background: rgba(0, 0, 0, 0.8);
|
|
110
|
-
}
|
|
111
|
-
|
|
112
112
|
|
|
113
113
|
.uni-calendar-component {
|
|
114
114
|
|
|
@@ -121,6 +121,11 @@ button.uni-text-component {
|
|
|
121
121
|
color: #666
|
|
122
122
|
}
|
|
123
123
|
|
|
124
|
+
.effect {
|
|
125
|
+
width: 100%;
|
|
126
|
+
height: 100%;
|
|
127
|
+
}
|
|
128
|
+
|
|
124
129
|
.like-button {
|
|
125
130
|
display: flex;
|
|
126
131
|
flex-direction: column;
|
|
@@ -194,11 +199,6 @@ button.uni-text-component {
|
|
|
194
199
|
|
|
195
200
|
.uni-build-up-component {
|
|
196
201
|
}
|
|
197
|
-
|
|
198
|
-
.effect {
|
|
199
|
-
width: 100%;
|
|
200
|
-
height: 100%;
|
|
201
|
-
}
|
|
202
202
|
/**
|
|
203
203
|
* Swiper 6.8.4
|
|
204
204
|
* Most modern mobile touch slider and framework with hardware accelerated transitions
|