github.com/grafana/pyroscope@v1.18.0/public/app/components/AppSelector/AppSelector.module.scss (about) 1 @use '../../sass/mixins/outline.scss' as *; 2 3 .container { 4 display: flex; 5 align-items: center; 6 position: relative; 7 8 .appSelectorModal { 9 height: auto; 10 width: auto; 11 right: unset; 12 left: -100px; // Refers to the width of the "Application" label 13 z-index: 999; 14 max-width: calc(100vw - 290px); 15 } 16 17 .headerTitle { 18 text-transform: uppercase; 19 margin-left: 10px; 20 color: var(--ps-select-modal-title); 21 font-weight: 700; 22 font-size: 0.8em; 23 } 24 25 .search { 26 background: var(--ps-immutable-off-white); 27 color: var(--ps-immutable-placeholder-text); 28 border: 1px solid var(--ps-ui-border); 29 margin: 10px 0 10px 10px; 30 } 31 32 .noData { 33 width: 600px; 34 height: 300px; 35 display: flex; 36 justify-content: center; 37 align-items: center; 38 } 39 }