Skip to content

Commit

Permalink
fix: random stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
ThaUnknown committed Dec 31, 2023
1 parent 3dad5ef commit 686d1ac
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 21 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,9 @@ build/

# Dependencies
node_modules/
**/*.der
**/*.pem
**/*.keystore
**/*.jks

package-lock.json
8 changes: 2 additions & 6 deletions capacitor/capacitor.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,6 @@ const config = {
}
}

if (mode === 'development') {
config.server = {
url: 'http://localhost:5001/index.html',
cleartext: true
}
}
if (mode === 'development') config.server.url = 'http://localhost:5001/index.html'

module.exports = config
2 changes: 1 addition & 1 deletion common/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"svelte-keybinds": "^1.0.6",
"svelte-loader": "^3.1.9",
"svelte-miniplayer": "^1.0.5",
"svelte-sonner": "^0.3.6",
"svelte-sonner": "^0.3.9",
"video-deband": "^1.0.5",
"webpack-merge": "^5.10.0"
}
Expand Down
9 changes: 2 additions & 7 deletions common/views/Player/Player.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -1408,11 +1408,6 @@
height: 100%;
}
@media (pointer: none), (pointer: coarse) {
.bottom .volume .custom-range {
width: 5vw;
}
}
.h-20 {
height: 2rem
}
Expand Down Expand Up @@ -1453,8 +1448,8 @@
display: block !important;
}
.miniplayer .mobile-focus-target:focus-visible {
background: hsla(209, 100%, 55%, 0.3);
}
background: hsla(209, 100%, 55%, 0.3);
}
}
</style>
8 changes: 4 additions & 4 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions web/src/lib/components/VideoShowcase.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
}
</script>

<div class='position-relative play-container' on:mousemove={followMouse} bind:this={container} role='none'>
<button class='btn rounded-circle btn-square btn-lg d-flex align-items-center justify-content-center position-absolute z-100 w-50 h-50' style:--left={left + 'px'} style:--top={top + 'px'} on:click={() => { show.value = true }}>
<div class='position-relative play-container' on:mousemove={followMouse} on:wheel={followMouse} bind:this={container} role='none' on:click={() => { show.value = true }}>
<button class='btn rounded-circle btn-square btn-lg d-flex align-items-center justify-content-center position-absolute z-100 w-50 h-50' style:--left={left + 'px'} style:--top={top + 'px'}>
<span class='material-symbols-outlined filled text-white'>play_arrow</span>
</button>
<img src='app.webp' alt='app' class='mw-full px-20 w-full app-image' />
Expand Down
2 changes: 1 addition & 1 deletion web/src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<div class='container-xl'>
<div class='my-20 pb-20' id='about'>
<h1 class='font-weight-bold text-white content text-center'>Torrenting made simple.</h1>
<p class='text-muted font-size-18 content text-center pb-20'> Feature-rich yet wonderfully simple. Miru delivers what you want effortlessly.<br />No complex configurations or high entry barriers — Miru is functional out of the box.</p>
<p class='text-muted font-size-18 content text-center pb-20'>Feature-rich yet wonderfully simple. Miru delivers what you want effortlessly.<br />No complex configurations or high entry barriers — Miru is perfectly functional out of the box.</p>
<div class='row pt-20'>
<div class='col-md-4 col-12'>
<div class='content'>
Expand Down

0 comments on commit 686d1ac

Please sign in to comment.