106 lines
2.2 KiB
SCSS
106 lines
2.2 KiB
SCSS
@use "../../abstracts/variables" as *;
|
|
@use "../../abstracts/mixins" as *;
|
|
|
|
.log-list-container {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
background: var(--background-color-secondary);
|
|
|
|
.log-list-wrapper {
|
|
height: 50%;
|
|
min-width: 50%;
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
z-index: 5;
|
|
background: var(--background-color);
|
|
padding: 14px 12px;
|
|
border-radius: 15px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 12px;
|
|
backdrop-filter: blur(50px);
|
|
outline: 1px solid var(--border-color);
|
|
|
|
.log-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
|
|
.log-header-wrapper {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
}
|
|
|
|
.close {
|
|
@include flex-center;
|
|
height: 28px;
|
|
width: 28px;
|
|
cursor: pointer;
|
|
svg {
|
|
scale: 1.6;
|
|
}
|
|
}
|
|
}
|
|
|
|
.log-nav-wrapper {
|
|
display: flex;
|
|
gap: 6px;
|
|
|
|
.log-nav {
|
|
padding: 8px 16px;
|
|
border-radius: 19px;
|
|
}
|
|
|
|
.log-nav.active {
|
|
background-color: var(--background-color-accent);
|
|
color: var(--text-button-color);
|
|
}
|
|
}
|
|
|
|
.log-entry-wrapper {
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 4px;
|
|
background: var(--background-color);
|
|
padding: 18px 10px;
|
|
border-radius: 16px;
|
|
outline: 1px solid var(--border-color);
|
|
outline-offset: -1px;
|
|
|
|
.log-entry {
|
|
padding: 4px;
|
|
border-radius: 4px;
|
|
font-size: var(--font-size-small);
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
|
|
.log-icon {
|
|
@include flex-center;
|
|
}
|
|
.log-entry-message-container {
|
|
@include flex-space-between;
|
|
gap: 12px;
|
|
width: 100%;
|
|
.message-time {
|
|
font-size: var(--font-size-tiny);
|
|
font-weight: 300;
|
|
opacity: 0.8;
|
|
text-wrap: nowrap;
|
|
}
|
|
.log-entry-message{
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
&:nth-child(odd) {
|
|
background: var(--background-color);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|