Compare commits

..

No commits in common. "b8322e1fd8eeec3c3b5481254033472a0e58c58d" and "d344674e02708638b29246c67a0a9eaf9bef4a72" have entirely different histories.

3 changed files with 3 additions and 25 deletions

View File

@ -1,5 +1,5 @@
[tool.bumpversion]
current_version = "0.1.8"
current_version = "0.1.7"
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
serialize = ["{major}.{minor}.{patch}"]
search = "{current_version}"

View File

@ -100,10 +100,6 @@
max-width: 80%;
text-align: left;
margin-top: 20px;
max-height: 25vh;
/* NEW: restrict height */
overflow-y: auto;
/* NEW: allow vertical scroll */
}
/* Back button fixed top right */
@ -162,10 +158,6 @@
font-size: 14px;
max-width: 90%;
padding: 8px 16px;
max-height: 20vh;
/* smaller height for mobile */
overflow-y: auto;
/* keep scroll on mobile too */
}
.button-link {

View File

@ -21,8 +21,7 @@
background: black;
color: white;
font-family: Arial, sans-serif;
position: relative;
/* So fixed elements inside work well */
position: relative; /* So fixed elements inside work well */
}
.image-container {
@ -51,21 +50,8 @@
border-radius: 10px;
max-width: 80vw;
text-align: left;
max-height: 30vh;
/* NEW: limit height */
overflow-y: auto;
/* NEW: allow scrolling */
}
/* Optional: Adjust height for smaller screens */
@media (max-width: 768px) {
.prompt {
max-height: 25vh;
/* even smaller on mobile */
}
}
.button-group {
display: flex;
gap: 20px;