@use "../../abstracts/variables" as *; @use "../../abstracts/mixins" as *; .footer-wrapper { position: absolute; bottom: 0; left: 0; width: 100%; z-index: 1; display: flex; justify-content: space-between; padding: 2px 12px; .selection-wrapper { display: flex; gap: 6px; .selector-wrapper { display: flex; gap: 6px; align-items: center; background: var(--background-color); padding: 3px 6px; border-radius: 12px; color: var(--text-color); .selector { color: var(--text-color); } } } .logs-wrapper { display: flex; gap: 6px; .logs-detail, .version { border-radius: 12px; background: var(--background-color); padding: 3px 6px; color: var(--text-color); display: flex; align-items: center; gap: 6px; } .logs-detail { padding: 2px 12px; cursor: pointer; .log-icon { @include flex-center; } .log-message { max-width: 40vw; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } } .version { display: flex; gap: 6px; } } }