webapp/src/components/Inbox/MessagesFallback.module.scss
Tony 0b70289195
Prepare inbox (#65)
Chat client - MVP
2022-12-17 06:27:00 +03:00

27 lines
420 B
SCSS

.MessagesFallback {
display: flex;
align-items: center;
justify-content: center;
min-height: 100%;
$width: 10.5em;
.text {
font-weight: 500;
font-size: 18px;
line-height: 24px;
width: $width;
}
.button {
background: #141414;
border-radius: 12px;
width: 100%;
max-width: $width;
text-align: center;
color: #fff;
height: 48px;
text-transform: none;
}
}