mirror of
https://github.com/lospec/pixel-editor.git
synced 2023-08-10 21:12:51 +03:00
24 lines
466 B
SCSS
24 lines
466 B
SCSS
|
#right-container{
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
position: fixed;
|
||
|
top: var(--top-nav-height);
|
||
|
right: var(--top-nav-height);
|
||
|
bottom: 0;
|
||
|
}
|
||
|
#bottom-container{
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
position: fixed;
|
||
|
left: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
}
|
||
|
#left-container{
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
position: fixed;
|
||
|
top: var(--top-nav-height);
|
||
|
bottom: 0;
|
||
|
left: var(--top-nav-height);
|
||
|
}
|