mirror of
https://github.com/gorhill/uBlock.git
synced 2026-03-11 09:04:36 +00:00
23 lines
339 B
CSS
23 lines
339 B
CSS
|
|
html {
|
||
|
|
height: 100vh;
|
||
|
|
overflow: hidden;
|
||
|
|
width: 100vw;
|
||
|
|
}
|
||
|
|
body {
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
height: 100%;
|
||
|
|
justify-content: stretch;
|
||
|
|
overflow: hidden;
|
||
|
|
width: 100%;
|
||
|
|
}
|
||
|
|
.body {
|
||
|
|
flex-shrink: 0;
|
||
|
|
}
|
||
|
|
.codeMirrorContainer {
|
||
|
|
flex-grow: 1;
|
||
|
|
}
|
||
|
|
#console {
|
||
|
|
text-align: left;
|
||
|
|
}
|