@latest-thinking/lt-player 1.0.5-k → 1.0.5-l
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/css/lt-player-main.css +1 -1
- package/dist/css/lt-player-main.css.map +1 -1
- package/dist/js/lt-player-main.js +1 -1
- package/dist/js/lt-player-main.js.map +1 -1
- package/package.json +1 -1
- package/src/assets/sass/sections/controllers/_botom.scss +19 -7
- package/src/services/ResizeService.ts +3 -2
package/package.json
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
body {
|
|
2
|
+
margin: 0 !important;
|
|
3
|
+
}
|
|
4
|
+
|
|
1
5
|
@import "../../abstracts/variables";
|
|
2
6
|
|
|
3
7
|
.lt-player-landscape--desktop,
|
|
@@ -17,7 +21,7 @@
|
|
|
17
21
|
&__center-buttons,
|
|
18
22
|
&__right-buttons {
|
|
19
23
|
display: flex;
|
|
20
|
-
gap:
|
|
24
|
+
gap: 20px;
|
|
21
25
|
align-items: flex-end;
|
|
22
26
|
}
|
|
23
27
|
|
|
@@ -29,7 +33,7 @@
|
|
|
29
33
|
}
|
|
30
34
|
|
|
31
35
|
&__center-buttons {
|
|
32
|
-
gap:
|
|
36
|
+
gap: 32px;
|
|
33
37
|
}
|
|
34
38
|
|
|
35
39
|
&__right-buttons {
|
|
@@ -80,12 +84,20 @@
|
|
|
80
84
|
&__controls {
|
|
81
85
|
.bottom-controller {
|
|
82
86
|
.play-button {
|
|
83
|
-
padding: .75rem;
|
|
84
|
-
bottom: -2px;
|
|
87
|
+
//padding: .75rem;
|
|
88
|
+
//bottom: -2px;
|
|
85
89
|
}
|
|
86
90
|
|
|
87
91
|
&__center-buttons {
|
|
88
|
-
gap: 1rem;
|
|
92
|
+
//gap: 1rem;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
&__previous-chapter-view {
|
|
96
|
+
display: none;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
&__next-chapter-view {
|
|
100
|
+
display: none;
|
|
89
101
|
}
|
|
90
102
|
}
|
|
91
103
|
}
|
|
@@ -115,7 +127,7 @@
|
|
|
115
127
|
|
|
116
128
|
.skip-backward-seconds,
|
|
117
129
|
.skip-forward-seconds {
|
|
118
|
-
display:
|
|
130
|
+
display: flex;
|
|
119
131
|
}
|
|
120
132
|
}
|
|
121
133
|
}
|
|
@@ -230,7 +242,7 @@
|
|
|
230
242
|
&__controls {
|
|
231
243
|
.bottom-controller {
|
|
232
244
|
position: absolute;
|
|
233
|
-
bottom:
|
|
245
|
+
bottom: 0;
|
|
234
246
|
width: 100%;
|
|
235
247
|
height: 36%;
|
|
236
248
|
max-width: 500px;
|