dev #28

Merged
RHPZAdmin merged 3 commits from dev into master 2026-07-01 09:56:52 +00:00
4 changed files with 18 additions and 1 deletions

View File

@@ -9,7 +9,8 @@ body {
background-color: var(--bg); background-color: var(--bg);
color: var(--text); color: var(--text);
display: flex; display: flex;
height: 100vh; height: 100dvh;
min-height: 100dvh;
overflow: hidden; overflow: hidden;
} }

View File

@@ -3,6 +3,7 @@
display: flex; display: flex;
flex-direction: column; flex-direction: column;
overflow: hidden; overflow: hidden;
min-height: 0;
} }
#topbar { #topbar {

View File

@@ -102,6 +102,20 @@
color: var(--text); color: var(--text);
margin-bottom: 30px; margin-bottom: 30px;
word-break: break-word; word-break: break-word;
pre {
max-width: 100%;
overflow-x: auto;
white-space: pre-wrap;
word-break: break-word;
padding: 12px;
border-radius: 6px;
}
code {
white-space: pre-wrap;
word-break: break-word;
}
} }
.entry-gallery { .entry-gallery {

View File

@@ -10,6 +10,7 @@
top: 60px; top: 60px;
height: calc(100dvh - 60px); height: calc(100dvh - 60px);
max-height: calc(100dvh - 60px); max-height: calc(100dvh - 60px);
min-height: 0;
transform: translateX(-100%); transform: translateX(-100%);
transition: transform 0.3s ease-in-out; transition: transform 0.3s ease-in-out;
z-index: 999; z-index: 999;