fix: make files cover all space available

This commit is contained in:
jabuxas 2024-10-17 18:11:39 -03:00
parent c3424c1bb3
commit 37f12ad067

View File

@ -138,7 +138,7 @@
display: flex; display: flex;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
padding: 20px; padding: 10px;
} }
img, img,
@ -162,15 +162,19 @@
} }
pre { pre {
flex: 1;
width: 100%;
height: 100%;
white-space: pre; white-space: pre;
font-family: monospace; font-family: monospace;
font-size: 1rem; font-size: 1rem;
background-color: #2e2e2e; background-color: #2e2e2e;
padding: 20px; padding: 10px;
border-radius: 8px; border-radius: 8px;
overflow: auto; overflow: auto;
scrollbar-width: thin; scrollbar-width: thin;
scrollbar-color: #686868 #2e2e2e; scrollbar-color: #686868 #2e2e2e;
box-sizing: border-box;
} }
pre::-webkit-scrollbar { pre::-webkit-scrollbar {