Fix height of next/prev buttons
This commit is contained in:
parent
8d585975b5
commit
69b2f6fa04
4 changed files with 8 additions and 3 deletions
5
CHANGES
5
CHANGES
|
@ -2,6 +2,11 @@
|
|||
Changes
|
||||
=======
|
||||
|
||||
1.0.3 (*2021-07-13*)
|
||||
====================
|
||||
|
||||
- Fix height on prev/next buttons
|
||||
|
||||
1.0.2 (*2021-07-13*)
|
||||
====================
|
||||
|
||||
|
|
2
setup.py
2
setup.py
|
@ -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",
|
||||
|
|
|
@ -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__])
|
||||
|
||||
|
||||
|
|
|
@ -261,7 +261,7 @@
|
|||
background-color: transparent;
|
||||
font-size: 4rem;
|
||||
padding: 1rem;
|
||||
height: 100%;
|
||||
height: auto;
|
||||
display: inline;
|
||||
vertical-align: middle;
|
||||
margin: 1;
|
||||
|
|
Loading…
Reference in a new issue