signal-desktop/stylesheets/components/Inbox.scss
Josh Perez 4ec94367c9
Adds transitions to panels
Co-authored-by: Jamie Kyle <jamie@signal.org>
2023-07-26 15:23:32 -07:00

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;
}
}
}