unika-components 1.0.105 → 1.0.106
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 +40 -40
- package/package.json +1 -1
|
@@ -96,6 +96,27 @@ button.uni-text-component {
|
|
|
96
96
|
}
|
|
97
97
|
}
|
|
98
98
|
|
|
99
|
+
.uni-video-component {
|
|
100
|
+
position: relative;
|
|
101
|
+
text-align: center;
|
|
102
|
+
}
|
|
103
|
+
.play-pause-button {
|
|
104
|
+
position: absolute;
|
|
105
|
+
top: 50%;
|
|
106
|
+
left: 50%;
|
|
107
|
+
transform: translate(-50%, -50%);
|
|
108
|
+
cursor: pointer;
|
|
109
|
+
font-size: 2rem;
|
|
110
|
+
color: #fff;
|
|
111
|
+
background: rgba(0, 0, 0, 0.6);
|
|
112
|
+
border-radius: 50%;
|
|
113
|
+
padding: 10px;
|
|
114
|
+
transition: background 0.3s;
|
|
115
|
+
}
|
|
116
|
+
.play-pause-button:hover {
|
|
117
|
+
background: rgba(0, 0, 0, 0.8);
|
|
118
|
+
}
|
|
119
|
+
|
|
99
120
|
.slot-number {
|
|
100
121
|
position: absolute;
|
|
101
122
|
bottom: 2px;
|
|
@@ -126,46 +147,6 @@ button.uni-text-component {
|
|
|
126
147
|
color: #333;
|
|
127
148
|
}
|
|
128
149
|
|
|
129
|
-
.uni-video-component {
|
|
130
|
-
position: relative;
|
|
131
|
-
text-align: center;
|
|
132
|
-
}
|
|
133
|
-
.play-pause-button {
|
|
134
|
-
position: absolute;
|
|
135
|
-
top: 50%;
|
|
136
|
-
left: 50%;
|
|
137
|
-
transform: translate(-50%, -50%);
|
|
138
|
-
cursor: pointer;
|
|
139
|
-
font-size: 2rem;
|
|
140
|
-
color: #fff;
|
|
141
|
-
background: rgba(0, 0, 0, 0.6);
|
|
142
|
-
border-radius: 50%;
|
|
143
|
-
padding: 10px;
|
|
144
|
-
transition: background 0.3s;
|
|
145
|
-
}
|
|
146
|
-
.play-pause-button:hover {
|
|
147
|
-
background: rgba(0, 0, 0, 0.8);
|
|
148
|
-
}
|
|
149
|
-
|
|
150
|
-
.effect {
|
|
151
|
-
width: 100%;
|
|
152
|
-
height: 100%;
|
|
153
|
-
}
|
|
154
|
-
|
|
155
|
-
.swiper-warp {
|
|
156
|
-
width: 100%;
|
|
157
|
-
height: 100%;
|
|
158
|
-
}
|
|
159
|
-
|
|
160
|
-
.swiper-slide-component {
|
|
161
|
-
text-align: center;
|
|
162
|
-
}
|
|
163
|
-
|
|
164
|
-
.swiper-slide img {
|
|
165
|
-
max-width: 100%;
|
|
166
|
-
max-height: 100%;
|
|
167
|
-
}
|
|
168
|
-
|
|
169
150
|
.ant-input-number {
|
|
170
151
|
box-sizing: border-box;
|
|
171
152
|
margin: 0;
|
|
@@ -200,6 +181,25 @@ button.uni-text-component {
|
|
|
200
181
|
margin-bottom: 0px;
|
|
201
182
|
vertical-align: top;
|
|
202
183
|
}
|
|
184
|
+
|
|
185
|
+
.effect {
|
|
186
|
+
width: 100%;
|
|
187
|
+
height: 100%;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
.swiper-warp {
|
|
191
|
+
width: 100%;
|
|
192
|
+
height: 100%;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
.swiper-slide-component {
|
|
196
|
+
text-align: center;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
.swiper-slide img {
|
|
200
|
+
max-width: 100%;
|
|
201
|
+
max-height: 100%;
|
|
202
|
+
}
|
|
203
203
|
/**
|
|
204
204
|
* Swiper 6.8.4
|
|
205
205
|
* Most modern mobile touch slider and framework with hardware accelerated transitions
|