2025-05-02 13:01:00 +00:00
|
|
|
@use "../../abstracts/variables" as *;
|
|
|
|
@use "../../abstracts/mixins" as *;
|
|
|
|
|
2025-05-02 11:44:36 +00:00
|
|
|
.footer-wrapper {
|
2025-05-02 13:01:00 +00:00
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
z-index: 1;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
padding: 2px 12px;
|
|
|
|
|
|
|
|
.selection-wrapper {
|
2025-05-02 11:44:36 +00:00
|
|
|
display: flex;
|
2025-05-02 13:01:00 +00:00
|
|
|
gap: 6px;
|
2025-05-02 11:44:36 +00:00
|
|
|
|
2025-05-02 13:01:00 +00:00
|
|
|
.selector-wrapper {
|
|
|
|
display: flex;
|
|
|
|
gap: 6px;
|
|
|
|
align-items: center;
|
|
|
|
background: var(--background-color);
|
|
|
|
padding: 3px 6px;
|
|
|
|
border-radius: 12px;
|
|
|
|
color: var(--text-color);
|
2025-05-02 11:44:36 +00:00
|
|
|
|
2025-05-02 13:01:00 +00:00
|
|
|
.selector {
|
|
|
|
color: var(--text-color);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2025-05-02 12:28:28 +00:00
|
|
|
|
2025-05-02 13:01:00 +00:00
|
|
|
.logs-wrapper {
|
|
|
|
display: flex;
|
|
|
|
gap: 6px;
|
2025-05-02 11:44:36 +00:00
|
|
|
|
2025-05-02 13:01:00 +00:00
|
|
|
.logs-detail,
|
|
|
|
.version {
|
|
|
|
border-radius: 12px;
|
|
|
|
background: var(--background-color);
|
|
|
|
padding: 3px 6px;
|
|
|
|
color: var(--text-color);
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
gap: 6px;
|
|
|
|
}
|
2025-05-02 11:44:36 +00:00
|
|
|
|
2025-05-02 13:01:00 +00:00
|
|
|
.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;
|
|
|
|
}
|
|
|
|
}
|
2025-05-02 11:44:36 +00:00
|
|
|
|
2025-05-02 13:01:00 +00:00
|
|
|
.version {
|
|
|
|
display: flex;
|
|
|
|
gap: 6px;
|
2025-05-02 11:44:36 +00:00
|
|
|
}
|
2025-05-02 13:01:00 +00:00
|
|
|
}
|
|
|
|
}
|