diff --git a/src/components/shared/SongItem.vue b/src/components/shared/SongItem.vue index 5e340a43..e3b18e64 100644 --- a/src/components/shared/SongItem.vue +++ b/src/components/shared/SongItem.vue @@ -9,7 +9,11 @@
{ e.preventDefault(); @@ -118,6 +124,7 @@ function emitUpdate(track: Track) { width: 45px; background-color: red; } + @include tablet-landscape { grid-template-columns: 1.5rem 1.5fr 1fr 1.5fr; } diff --git a/src/config.ts b/src/config.ts new file mode 100644 index 00000000..7e923362 --- /dev/null +++ b/src/config.ts @@ -0,0 +1,9 @@ +const paths = { + api: "", + images: { + thumb: "http://0.0.0.0:9877/thumb/", + artist: "http://0.0.0.0:9877/artist/", + }, +}; + +export { paths };