worker-pastebin/src/web/styles/pastebin.scss

34 lines
603 B
SCSS

.content-pastebin {
display: flex;
flex-flow: column;
height: 100%;
width: 100%;
}
.content-pastebin-edit {
//display: block;
flex: 1;
//height: 100%;
//width: 100%;
overflow-y: auto;
text-align: left;
box-sizing: border-box;
font-family: monospace;
}
.content-file-info {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 50%;
max-width: 50%;
max-height: 100%;
}
@media screen and ( max-width: $content-width ) {
.content-file-info {
width: 100%;
max-width: 100%;
}
}