4ec94367c9
Co-authored-by: Jamie Kyle <jamie@signal.org>
36 lines
654 B
SCSS
36 lines
654 B
SCSS
// Copyright 2021 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
.Inbox {
|
|
display: flex;
|
|
flex-direction: row;
|
|
height: 100%;
|
|
|
|
&__conversation-stack {
|
|
flex-grow: 1;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
position: relative;
|
|
}
|
|
|
|
&__no-conversation-open {
|
|
align-items: center;
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
justify-content: center;
|
|
overflow: hidden;
|
|
position: relative;
|
|
text-align: center;
|
|
}
|
|
|
|
.__conversation {
|
|
@include light-theme {
|
|
background-color: $color-white;
|
|
}
|
|
|
|
@include dark-theme {
|
|
background-color: $color-gray-95;
|
|
}
|
|
}
|
|
}
|