2025-05-02 11:44:36 +00:00
|
|
|
.footer-wrapper {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
z-index: 1;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
2025-05-02 12:28:28 +00:00
|
|
|
padding: 12px 24px;
|
2025-05-02 11:44:36 +00:00
|
|
|
|
|
|
|
.selection-wrapper {
|
|
|
|
display: flex;
|
|
|
|
gap: 6px;
|
|
|
|
|
|
|
|
.selector-wrapper {
|
|
|
|
display: flex;
|
|
|
|
gap: 6px;
|
|
|
|
align-items: center;
|
|
|
|
background: var(--background-color);
|
2025-05-02 12:09:43 +00:00
|
|
|
padding: 3px 6px;
|
2025-05-02 11:44:36 +00:00
|
|
|
border-radius: 12px;
|
|
|
|
color: var(--text-color);
|
|
|
|
|
|
|
|
.selector {
|
2025-05-02 12:28:28 +00:00
|
|
|
color: var(--text-color);
|
2025-05-02 11:44:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.logs-wrapper {
|
|
|
|
display: flex;
|
|
|
|
gap: 6px;
|
|
|
|
|
|
|
|
.logs-detail,
|
|
|
|
.version {
|
2025-05-02 12:28:28 +00:00
|
|
|
|
2025-05-02 11:44:36 +00:00
|
|
|
border-radius: 12px;
|
|
|
|
background: var(--background-color);
|
2025-05-02 12:09:43 +00:00
|
|
|
padding: 3px 6px;
|
2025-05-02 12:28:28 +00:00
|
|
|
color: var(--text-color);
|
2025-05-02 11:44:36 +00:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2025-05-02 12:28:28 +00:00
|
|
|
gap: 6px;
|
2025-05-02 11:44:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.logs-detail {
|
2025-05-02 12:09:43 +00:00
|
|
|
// background-color: #fff;
|
2025-05-02 11:44:36 +00:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.version {
|
|
|
|
display: flex;
|
|
|
|
gap: 6px;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|