WIP: Production release #6

Draft
fr wants to merge 28 commits from dev into master
Showing only changes of commit 28c29f0d30 - Show all commits

View File

@ -1,14 +1,23 @@
//.language-yaml { //.language-yaml {
pre { pre {
display:flex; display: flex; /* Enables flexbox */
align-items: center; align-items: center; /* Vertically centers the content */
min-height: 3rem; justify-content: space-between; /* Allows space for the copy button on the right */
white-space: pre-wrap; max-width: 100%;
word-wrap: break-word;
overflow-x: auto; overflow-x: auto;
padding: .5rem; overflow-y: auto;
margin: .5rem 0; min-height: 3rem; /* Maintains a consistent height */
padding: 0.5rem;
margin: 0.5rem 0;
border-radius: 5px; border-radius: 5px;
white-space: pre; /* Keeps code formatting */
box-sizing: border-box; /* Includes padding in width calculation */
}
code {
display: inline-block;
word-break: break-word; /* Prevents long words from breaking the layout */
white-space: pre-wrap; /* Allows wrapping of long strings */
} }
.project-wrapper { .project-wrapper {