60 lines
904 B
SCSS
60 lines
904 B
SCSS
@use '../../../styles/mixins';
|
|
|
|
.content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.5rem;
|
|
max-height: min(92vh, 40rem) !important;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
.title {
|
|
background-color: var(--color-background-secondary);
|
|
}
|
|
|
|
.value {
|
|
word-break: break-word;
|
|
}
|
|
|
|
.table .cell {
|
|
border: 1px solid var(--color-borders);
|
|
padding: 0.25rem 0.5rem;
|
|
}
|
|
|
|
.section {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
|
|
padding: 0.5rem;
|
|
position: relative;
|
|
|
|
@include mixins.adapt-padding-to-scrollbar(0.5rem);
|
|
}
|
|
|
|
.logo {
|
|
margin: 1rem;
|
|
width: 6.25rem;
|
|
height: 6.25rem;
|
|
min-height: 6.25rem;
|
|
}
|
|
|
|
.logoBackground {
|
|
position: absolute;
|
|
top: 0.75rem;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
height: 8rem;
|
|
}
|
|
|
|
.avatar {
|
|
align-self: center;
|
|
}
|
|
|
|
.chatItem {
|
|
margin: 0;
|
|
width: fit-content;
|
|
background-color: var(--color-background);
|
|
color: var(--color-primary);
|
|
}
|