Dwinzo_dev/app/src/styles/components/footer/footer.scss

68 lines
1.2 KiB
SCSS
Raw Normal View History

@use "../../abstracts/variables" as *;
@use "../../abstracts/mixins" as *;
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;
padding: 2px 12px;
.selection-wrapper {
2025-05-02 11:44:36 +00:00
display: flex;
gap: 6px;
2025-05-02 11:44:36 +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
.selector {
color: var(--text-color);
}
}
}
2025-05-02 12:28:28 +00:00
.logs-wrapper {
display: flex;
gap: 6px;
2025-05-02 11:44:36 +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
.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
.version {
display: flex;
gap: 6px;
2025-05-02 11:44:36 +00:00
}
}
}