This commit is contained in:
GZod01 2024-06-11 07:49:48 +02:00
parent b1d2ed52e0
commit 011e61514b

View file

@ -21,8 +21,8 @@
background-position: center; background-position: center;
background-repeat: no-repeat; background-repeat: no-repeat;
span#caption{ span#caption{
height:100%; --height:100%;
width:100%; --width:100%;
} }
} }
@ -49,9 +49,12 @@
display:none; display:none;
background-color:rgba(27, 27,27, 0.7); background-color:rgba(27, 27,27, 0.7);
color:white; color:white;
width:17.5em; --width:17.5em;
width: 0;
overflow:auto; overflow:auto;
height:17.5em; --height:17.5em;
height: 0;
overflow: none;
word-wrap:break-word; word-wrap:break-word;
word-break:break-word; word-break:break-word;
padding:10px; padding:10px;
@ -65,6 +68,9 @@
transition: opacity 0.2s; transition: opacity 0.2s;
span#caption{ span#caption{
display:block; display:block;
width:var(--width);
height:var(--height);
overflow: auto;
} }
} }