Back to home page

EIC code displayed by LXR

 
 

    


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

0001 .tool-panel-wrapper {
0002   position: fixed;
0003   top: 20%;
0004   right: 0;
0005 
0006 }
0007 
0008 .content {
0009   background-color: var(--mat-sys-surface-container-low);
0010   box-shadow: var(--mat-sys-level2);
0011   border-radius: 8px 0 0 8px;
0012   display: flex;
0013   flex-direction: column;
0014   align-items: center;
0015   justify-content: center;
0016   transition: transform 0.3s ease;
0017   padding: 10px;
0018 
0019 }
0020 
0021 .tool-panel.collapsed {
0022   transform: translateX(calc(100% - 60px));
0023 }
0024 
0025 .action-buttons{
0026   display: flex;
0027   flex-direction: column;
0028   gap: 8px;
0029   margin-top: 8px;
0030 }
0031 
0032 .toggle-button {
0033   z-index: 1;
0034 }