0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-25 14:02:40 +00:00

Sidebar is nearing completion

This commit is contained in:
Scott Tolksdorf
2015-11-15 16:28:17 -05:00
parent 4ddc4dcf52
commit 3627ee3b49
18 changed files with 1137 additions and 41 deletions

View File

@@ -0,0 +1,30 @@
@import (less) "./jsoneditor.css";
.jsonFileEditor{
position : relative;
width : 100%;
&.showEditor{
.jsonEditor{
display : initial;
}
}
.jsonEditor{
position : absolute;
display : none;
top : 100%;
left : 0px;
z-index : 1000;
background-color : white;
}
.name{
display : inline-block;
font-size : 0.8em;
font-weight : 800;
}
.controls{
position : absolute;
top : 0px;
right : 0px;
}
}