mirror of
https://github.com/stolksdorf/homebrewery.git
synced 2025-12-15 12:15:58 +00:00
30 lines
496 B
Plaintext
30 lines
496 B
Plaintext
|
|
@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;
|
|
}
|
|
} |