mirror of
https://github.com/ParkerTenBroeck/automata.git
synced 2026-06-06 21:24:06 -04:00
46 lines
No EOL
657 B
SCSS
46 lines
No EOL
657 B
SCSS
@use "editor.scss";
|
|
@use "terminal.scss";
|
|
@use "loading.scss";
|
|
|
|
html,
|
|
body {
|
|
height: 100%;
|
|
width: 100%;
|
|
margin: 0;
|
|
font-family: system-ui, sans-serif;
|
|
background: #909090;
|
|
}
|
|
|
|
.app {
|
|
height: 100vh;
|
|
width: 100vw;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.graph {
|
|
width: 100%;
|
|
height: 100%;
|
|
background: #111;
|
|
}
|
|
|
|
.vscroll {
|
|
height: 100%;
|
|
overflow-x: scroll;
|
|
}
|
|
|
|
.hSplit {
|
|
cursor: row-resize;
|
|
height: 8px;
|
|
background: rgba(255, 255, 255, 0.06);
|
|
}
|
|
|
|
.vSplit {
|
|
cursor: col-resize;
|
|
width: 8px;
|
|
background: rgba(255, 255, 255, 0.06);
|
|
}
|
|
|
|
.hSplit:hover,
|
|
.vSplit:hover {
|
|
background: rgba(121, 192, 255, 0.25);
|
|
} |