36 lines
564 B
CSS
36 lines
564 B
CSS
html,
|
|
body {
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
body {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding-top: 8px;
|
|
padding-bottom: 8px;
|
|
background-color: #f5f5f5;
|
|
}
|
|
|
|
main {
|
|
flex-grow: 1;
|
|
height: 0;
|
|
width: 100%;
|
|
overflow-y: scroll;
|
|
}
|
|
|
|
pre.file-content {
|
|
background-color: white;
|
|
text-align: left;
|
|
padding: 8px;
|
|
width: 100%;
|
|
overflow-x: scroll;
|
|
white-space: pre-wrap;
|
|
word-wrap: break-word;
|
|
}
|
|
|
|
.w-fit-content {
|
|
width: fit-content !important;
|
|
}
|