Fix height of next/prev buttons

This commit is contained in:
Kujiu 2021-07-13 19:04:55 +02:00
parent 8d585975b5
commit 69b2f6fa04
Signed by: kujiu
GPG Key ID: ABBB2CAC6855599F
4 changed files with 8 additions and 3 deletions

View File

@ -2,6 +2,11 @@
Changes
=======
1.0.3 (*2021-07-13*)
====================
- Fix height on prev/next buttons
1.0.2 (*2021-07-13*)
====================

View File

@ -7,7 +7,7 @@ with open("README.rst", "r") as fh:
setup(
name="sphinx_galleria",
version="1.0.2",
version="1.0.3",
url="https://procrastinator.nerv-project.eu/nerv-project/sphinx_galleria",
license="EUPL 1.2",
author="Kujiu",

View File

@ -14,7 +14,7 @@ from PIL import Image
from . import directive
from . import collector
__version_info__ = (1, 0, 2)
__version_info__ = (1, 0, 3)
__version__ = '.'.join([str(val) for val in __version_info__])

View File

@ -261,7 +261,7 @@
background-color: transparent;
font-size: 4rem;
padding: 1rem;
height: 100%;
height: auto;
display: inline;
vertical-align: middle;
margin: 1;