mirror of
https://github.com/gchq/CyberChef.git
synced 2025-05-08 15:25:01 -04:00
[#181] a few cosmetic touch ups, todo update
This commit is contained in:
parent
f1008cff56
commit
d0e8863555
8 changed files with 36 additions and 24 deletions
|
@ -6,20 +6,15 @@
|
|||
* @license Apache-2.0
|
||||
*/
|
||||
|
||||
/* Together, they make up 100vh */
|
||||
:root {
|
||||
--banner-height: 40px;
|
||||
--controls-height: 70px;
|
||||
--workspace-height: calc( 100vh - calc( var(--banner-height) + var(--controls-height)));;
|
||||
--recipe-height: 20vh;
|
||||
--operations-height: 88px;
|
||||
--workspace-height: calc( 100vh - var(--banner-height) - var(--controls-height));
|
||||
--recipe-height: 16vh;
|
||||
--operations-height: 89px;
|
||||
--io-height: calc(100vh - var(--banner-height) - var(--controls-height) - var(--recipe-height) - var(--operations-height));
|
||||
}
|
||||
|
||||
body {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
#banner,
|
||||
#content-wrapper {
|
||||
position: absolute;
|
||||
|
@ -46,7 +41,23 @@ body {
|
|||
bottom: 0;
|
||||
}
|
||||
|
||||
#IO {
|
||||
padding-bottom: var(--controls-height);
|
||||
}
|
||||
|
||||
@media only screen and ( min-width: 768px ) {
|
||||
#IO {
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
#recipe {
|
||||
padding-bottom: var(--controls-height);
|
||||
}
|
||||
|
||||
#recipe .list-area {
|
||||
bottom: var(--controls-height);
|
||||
}
|
||||
|
||||
#workspace-wrapper {
|
||||
height: calc( 100vh - var(--banner-height));
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue