diff options
| author | Factiven <[email protected]> | 2023-04-18 22:26:41 +0700 |
|---|---|---|
| committer | Factiven <[email protected]> | 2023-04-18 22:26:41 +0700 |
| commit | 9429681b7cdb61cf4ab065efc7a08abbb27d6787 (patch) | |
| tree | 4d3d19f8afbe221caacf00ba3698236915dd4d2d /components | |
| parent | Update videoPlayer.js (diff) | |
| download | moopa-9429681b7cdb61cf4ab065efc7a08abbb27d6787.tar.xz moopa-9429681b7cdb61cf4ab065efc7a08abbb27d6787.zip | |
11th fixes
Diffstat (limited to 'components')
| -rw-r--r-- | components/videoPlayer.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/videoPlayer.js b/components/videoPlayer.js index b73ef10..f93f153 100644 --- a/components/videoPlayer.js +++ b/components/videoPlayer.js @@ -110,12 +110,12 @@ export default function VideoPlayer({ if (!art.layers.op) { art.layers.add({ name: "op", - html: `<button style="background-color: #fff; color: black; padding: 10px 25px; border: none; border-radius: 4px; cursor: pointer; box-shadow: 2px 2px 5px rgba(0,0,0,0.2); font-family: Karla, sans-serif; font-size: 16px; text-align: center;">Skip Opening</button>`, + html: `<button class="skip-button">Skip Opening</button>`, tooltip: "Skip", style: { position: "absolute", bottom: "68px", - right: "60px", + right: "58px", }, click: function (...args) { art.seek = op.interval.endTime; |