Back to home page

EIC code displayed by LXR

 
 

    


Warning, /firebird/firebird-ng/src/app/components/display-shell/display-shell.component.scss is written in an unsupported language. File is not indexed.

0001 
0002 .display-shell {
0003   display: flex;
0004   flex-direction: column;
0005   height: 100vh;
0006   width: 100%;
0007   overflow: hidden;
0008   box-sizing: border-box;
0009 }
0010 
0011 .header{
0012   width: 100%;
0013   display: flex;
0014   flex-direction: row;
0015   align-items: center;
0016   min-height: 50px;
0017   box-sizing: border-box;
0018 }
0019 
0020 .main-content {
0021   box-sizing: border-box;
0022   display: flex;
0023   flex: 1;
0024   overflow: hidden;
0025 }
0026 
0027 .pane {
0028   overflow: auto;
0029   min-width: 0;
0030 }
0031 
0032 .left-pane {
0033   //background-color: #2e2e2e;
0034 }
0035 
0036 .right-pane {
0037   //background-color: #2e2e2e;
0038 }
0039 
0040 .central-pane {
0041   flex: 1;
0042   overflow: auto;
0043 }
0044 
0045 .divider {
0046   width: 5px;
0047   cursor: col-resize;
0048   background-color: #000000;
0049   user-select: none;
0050 }
0051 
0052 .left-divider {
0053   cursor: col-resize;
0054 }
0055 
0056 .right-divider {
0057   cursor: col-resize;
0058 }
0059 
0060 
0061