Signal-Desktop/stylesheets/_index.scss

52 lines
751 B
SCSS
Raw Normal View History

// Copyright 2015-2021 Signal Messenger, LLC
2020-10-30 20:34:04 +00:00
// SPDX-License-Identifier: AGPL-3.0-only
#app-container {
height: 100%;
}
.conversation-stack,
2018-05-04 20:07:52 +00:00
.inbox,
.no-conversation-open {
height: 100%;
overflow: hidden;
position: relative;
}
.scrollable {
height: 100%;
overflow: auto;
}
.no-conversation-open {
display: flex;
flex-direction: column;
text-align: center;
justify-content: center;
align-items: center;
}
2019-01-10 20:26:28 +00:00
.conversation-stack {
flex-grow: 1;
2019-01-14 21:49:58 +00:00
}
2015-11-27 23:43:45 +00:00
.conversation.placeholder {
text-align: center;
user-select: none;
.container {
height: 100%;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.content {
display: inline-block;
}
h3 {
font-size: large;
}
2015-11-27 23:43:45 +00:00
}