Skip to content

Commit ccc8b2f

Browse files
committed
Fix buttons on small screen sizes, fix deployement dev angular hot reload
1 parent 2166e9d commit ccc8b2f

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ export OSSE_DIRECTORIES=""
1515
export OSSE_ALLOW_REGISTRATION=true
1616

1717
# Storage (config, cache, database). Path will be created if not present.
18-
LARAVEL_STORAGE_PATH="~/.config/osse-2"
18+
LARAVEL_STORAGE_PATH="~/.config/osse"

osse-web/src/app/home/track/track.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
</div>
2626
</div>
2727
} @else {
28-
<div class="flex flex-wrap items-center place-items-center gap-x-2 w-full p-4">
28+
<div class="flex flex-wrap items-center place-items-center gap-2 w-full p-4">
2929
<button class="btn btn-primary py-6 group" (click)="playTrack()" title="Play Track" aria-label="Play Track"
3030
accesskey="p">
3131
<app-icon class="group-hover:opacity-95" [icon]="play" align="middle"></app-icon>

osse.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ generate_caddy() {
6464
envsubst < deployment/Caddyfile.template > Caddyfile
6565

6666
# Use angular dev server in dev, use build files in prod.
67-
if [ "$OSSE_ENV" = "dev" ]; then
67+
if [ "$OSSE_ENV" = "local" ]; then
6868
REPLACE="reverse_proxy http://localhost:4200"
6969
else
7070
REPLACE="try_files {path} /index.html\nfile_server"

0 commit comments

Comments
 (0)