mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-05-12 17:04:46 +00:00
* dev tools extension project * code editor integration * latest editor, offline setup * override extension config (session only) * schema support * wire external plugins with experimental flag * update package scripts * sidebar extensions scaffold * propagate extension tabs to info drawer * separate tab components for info drawer * extensibility for info drawer * support tab icons
24 lines
391 B
SCSS
24 lines
391 B
SCSS
.lib-aca-dev-tools {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex: 1;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
min-height: 0;
|
|
}
|
|
|
|
.ngs-code-editor {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex: 1;
|
|
height: 100%;
|
|
max-height: 100%;
|
|
overflow: hidden;
|
|
min-height: 0;
|
|
|
|
.editor {
|
|
// border: 1px solid grey;
|
|
// min-height: 400px;
|
|
}
|
|
}
|