Warning, /firebird/firebird-ng/src/app/components/perf-stats/perf-stats.component.scss is written in an unsupported language. File is not indexed.
0001 .perf-counter-wrapper {
0002 /* Use a background that contrasts slightly with your footer background */
0003 background-color: var(--mat-sys-secondary-container);
0004 padding: 4px 8px;
0005 border-radius: 4px;
0006 display: inline-block;
0007 box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
0008 margin: 4px;
0009 }
0010
0011 .perf-table {
0012 border-collapse: collapse;
0013 }
0014
0015 .perf-item {
0016 padding: 2px 8px;
0017 vertical-align: middle;
0018 }
0019
0020 .perf-label {
0021 font-family: 'Roboto', sans-serif;
0022 font-size: 0.65rem; // smaller than the value
0023 color: var(--mat-sys-on-secondary-container, #666);
0024 margin-right: 4px;
0025 }
0026
0027 .perf-value {
0028 font-family: 'Roboto Mono', monospace;
0029 font-size: 0.75rem; // slightly larger
0030 color: var(--mat-sys-on-secondary-container, #666);
0031 font-weight: 500;
0032 display: inline-block;
0033 min-width: 40px; // fixed width to avoid jumps
0034 text-align: right;
0035 }