Warning, /firebird/firebird-ng/src/app/components/scene-export/scene-export.scss is written in an unsupported language. File is not indexed.
0001 .custom-position-dialog {
0002 padding: 45px 24px 24px 24px;
0003 border-radius: 18px;
0004 box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
0005 font-family: Arial, sans-serif;
0006 max-width: 280px;
0007 display: flex;
0008 flex-direction: column;
0009 gap: 16px;
0010 }
0011
0012 .close-round-btn {
0013 position: absolute;
0014 top: 15px;
0015 right: 10px;
0016 border-radius: 50%;
0017 z-index: 10;
0018 border: none;
0019 background: none;
0020 box-shadow: var(--mat-sys-level2);
0021 }
0022
0023 .close-round-btn:hover {
0024 color: #bec2ff;
0025 }
0026
0027 .export-title {
0028 font-size: 14px;
0029 font-weight: 500;
0030 }
0031
0032 .format-toggle {
0033 display: flex;
0034 align-items: center;
0035 justify-content: center;
0036 gap: 12px;
0037
0038 .format-label {
0039 font-size: 13px;
0040 color: #888;
0041 transition: color 0.2s;
0042
0043 &.active {
0044 color: inherit;
0045 font-weight: 500;
0046 }
0047 }
0048 }
0049
0050 .export-buttons {
0051 display: flex;
0052 flex-direction: column;
0053 gap: 4px;
0054 }
0055
0056 .export-buttons button {
0057 display: flex;
0058 align-items: center;
0059 gap: 12px;
0060 }
0061
0062 .exporting-indicator {
0063 text-align: center;
0064 color: #888;
0065 font-size: 12px;
0066 }