Compare commits

..

No commits in common. "2768cbe2afed0671dc8519fb395791f225c4169a" and "f4b66a2c5f3d9ab35dc1f3e390f6856c769528a1" have entirely different histories.

2 changed files with 10 additions and 6 deletions

View file

@ -1,9 +1,9 @@
FROM rust:alpine AS builder
FROM rust:alpine as builder
WORKDIR /usr/src/empede
RUN apk add --no-cache build-base
COPY ./src ./src
COPY ./templates ./templates
COPY ./Cargo.toml ./Cargo.lock ./
COPY ./Cargo.* ./
RUN cargo install --path .
FROM alpine:latest

View file

@ -28,6 +28,7 @@ button {
background-color: transparent;
border: none;
color: inherit;
padding: 0;
font-weight: bold;
display: flex;
line-height: 24px;
@ -227,10 +228,6 @@ ul.dir li .material-symbols-outlined {
.albumart img {
visibility: hidden;
border-radius: 0.25rem;
width: 100%;
height: 100%;
object-fit: cover;
}
.queue .albumart {
@ -242,6 +239,13 @@ ul.dir li .material-symbols-outlined {
margin-right: 0.75rem;
}
.albumart img {
border-radius: 0.25rem;
width: 100%;
height: 100%;
object-fit: cover;
}
.track {
margin-right: 0.75rem;
}