Compare commits
2 commits
f4b66a2c5f
...
2768cbe2af
Author | SHA1 | Date | |
---|---|---|---|
2768cbe2af | |||
7b59d7db50 |
2 changed files with 6 additions and 10 deletions
|
@ -1,9 +1,9 @@
|
||||||
FROM rust:alpine as builder
|
FROM rust:alpine AS builder
|
||||||
WORKDIR /usr/src/empede
|
WORKDIR /usr/src/empede
|
||||||
RUN apk add --no-cache build-base
|
RUN apk add --no-cache build-base
|
||||||
COPY ./src ./src
|
COPY ./src ./src
|
||||||
COPY ./templates ./templates
|
COPY ./templates ./templates
|
||||||
COPY ./Cargo.* ./
|
COPY ./Cargo.toml ./Cargo.lock ./
|
||||||
RUN cargo install --path .
|
RUN cargo install --path .
|
||||||
|
|
||||||
FROM alpine:latest
|
FROM alpine:latest
|
||||||
|
|
|
@ -28,7 +28,6 @@ button {
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
border: none;
|
border: none;
|
||||||
color: inherit;
|
color: inherit;
|
||||||
padding: 0;
|
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
display: flex;
|
display: flex;
|
||||||
line-height: 24px;
|
line-height: 24px;
|
||||||
|
@ -228,6 +227,10 @@ ul.dir li .material-symbols-outlined {
|
||||||
|
|
||||||
.albumart img {
|
.albumart img {
|
||||||
visibility: hidden;
|
visibility: hidden;
|
||||||
|
border-radius: 0.25rem;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
object-fit: cover;
|
||||||
}
|
}
|
||||||
|
|
||||||
.queue .albumart {
|
.queue .albumart {
|
||||||
|
@ -239,13 +242,6 @@ ul.dir li .material-symbols-outlined {
|
||||||
margin-right: 0.75rem;
|
margin-right: 0.75rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.albumart img {
|
|
||||||
border-radius: 0.25rem;
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
object-fit: cover;
|
|
||||||
}
|
|
||||||
|
|
||||||
.track {
|
.track {
|
||||||
margin-right: 0.75rem;
|
margin-right: 0.75rem;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue