1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-11-24 08:12:24 +02:00

Server: Fixed pagination link styling

This commit is contained in:
Laurent Cozic 2021-08-13 18:59:45 +01:00
parent e57e5d3b3f
commit d42d181f31
2 changed files with 8 additions and 1 deletions

View File

@ -1,10 +1,13 @@
# https://versatile.nl/blog/deploying-lerna-web-apps-with-docker
FROM node:12
FROM node:16
RUN apt-get update
RUN apt-get --yes install vim
RUN echo "Node: $(node --version)"
RUN echo "Npm: $(npm --version)"
ARG user=joplin
RUN useradd --create-home --shell /bin/bash $user

View File

@ -57,6 +57,10 @@ ul li {
list-style-type: disc;
}
ul.pagination-list li {
list-style-type: none;
}
.readable-block {
max-width: 740px;
}