diff --git a/Dockerfile b/Dockerfile index 2930173..b1021c8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ FROM rust:alpine AS builder RUN apk add --no-cache musl-dev git -WORKDIR /redlib +WORKDIR /redsunlib COPY . . @@ -19,16 +19,16 @@ COPY --from=builder /usr/share/ca-certificates /usr/share/ca-certificates COPY --from=builder /etc/ssl/certs /etc/ssl/certs # Copy our build -COPY --from=builder /redlib/target/x86_64-unknown-linux-musl/release/redlib /usr/local/bin/redlib +COPY --from=builder /redsunlib/target/x86_64-unknown-linux-musl/release/redsunlib /usr/local/bin/redsunlib # Use an unprivileged user. -RUN adduser --home /nonexistent --no-create-home --disabled-password redlib -USER redlib +RUN adduser --home /nonexistent --no-create-home --disabled-password redsunlib +USER redsunlib # Tell Docker to expose port 8080 EXPOSE 8080 -# Run a healthcheck every minute to make sure redlib is functional +# Run a healthcheck every minute to make sure redsunlib is functional HEALTHCHECK --interval=1m --timeout=3s CMD wget --spider -q http://localhost:8080/settings || exit 1 -CMD ["redlib"] \ No newline at end of file +CMD ["redsunlib"] \ No newline at end of file diff --git a/static/style.css b/static/style.css index b283129..87b3c3b 100644 --- a/static/style.css +++ b/static/style.css @@ -1517,6 +1517,7 @@ summary.comment_data { box-shadow: var(--shadow); margin-left: 20px; background: var(--foreground); + width: 30%; } aside.prefs { diff --git a/static/themes/catppuccin.css b/static/themes/catppuccin.css index bb1d563..0072619 100644 --- a/static/themes/catppuccin.css +++ b/static/themes/catppuccin.css @@ -1,8 +1,9 @@ +/* Catppuccin theme setting */ .catppuccin { --accent: #b4befe; /* lavender */ --green: #a6e3a1; /* green */ --text: #cdd6f4; /* text */ - --foreground: #11111b; /* crust */ + --foreground: #181825; /* mantle */ --background: #1e1e2e; /* base */ --outside: #11111b; /* crust */ --post: #11111b; /* crust */