added logs list

This commit is contained in:
Nalvazhuthi
2025-05-02 17:14:36 +05:30
parent 66d8196537
commit 4b7a868d1a
15 changed files with 604 additions and 51 deletions

View File

@@ -0,0 +1,56 @@
.footer-wrapper {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
z-index: 1;
display: flex;
justify-content: space-between;
.selection-wrapper {
display: flex;
gap: 6px;
.selector-wrapper {
display: flex;
gap: 6px;
align-items: center;
background: var(--background-color);
padding: 4px 6px;
border-radius: 12px;
color: var(--text-color);
.selector {
color: var(--text-button-color);
font-weight: 200;
}
}
}
.logs-wrapper {
display: flex;
gap: 6px;
.logs-detail,
.version {
border-radius: 12px;
background: var(--background-color);
padding: 4px 6px;
color: var(--text-button-color);
font-weight: 200;
display: flex;
align-items: center;
}
.logs-detail {
background-color: #fff;
cursor: pointer;
}
.version {
display: flex;
gap: 6px;
}
}
}