mirror of
https://github.com/cheeaun/phanpy.git
synced 2024-11-28 04:12:41 +03:00
Make figcaption self align to bottom
This is in case the image height is smaller than the figcaption. Could be possible for text in other languages. Flexbox is so cool.
This commit is contained in:
parent
faa7ffc310
commit
8be2c738df
1 changed files with 2 additions and 1 deletions
|
@ -713,10 +713,11 @@
|
|||
padding: 0;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
align-items: flex-end;
|
||||
/* align-items: flex-end; */
|
||||
column-gap: 4px;
|
||||
|
||||
figcaption {
|
||||
align-self: flex-end;
|
||||
padding: 4px;
|
||||
font-size: 90%;
|
||||
color: var(--text-insignificant-color);
|
||||
|
|
Loading…
Reference in a new issue