mirror of
https://github.com/stoatchat/for-legacy-web.git
synced 2026-03-07 09:25:27 +00:00
chore(settings): added new translation strings
This commit is contained in:
@@ -44,11 +44,32 @@ const ChannelContent = styled.div`
|
||||
`;
|
||||
|
||||
const PlaceholderBase = styled.div`
|
||||
@keyframes floating {
|
||||
0% {
|
||||
transform: translate(0, 0px);
|
||||
}
|
||||
50% {
|
||||
transform: translate(0, 15px);
|
||||
}
|
||||
100% {
|
||||
transform: translate(0, -0px);
|
||||
}
|
||||
}
|
||||
|
||||
flex-grow: 1;
|
||||
display: flex;
|
||||
overflow: hidden;
|
||||
flex-direction: column;
|
||||
|
||||
.floating {
|
||||
animation-name: floating;
|
||||
animation-duration: 3s;
|
||||
animation-iteration-count: infinite;
|
||||
animation-timing-function: ease-in-out;
|
||||
margin-left: 30px;
|
||||
margin-top: 5px;
|
||||
}
|
||||
|
||||
.placeholder {
|
||||
justify-content: center;
|
||||
text-align: center;
|
||||
@@ -163,7 +184,9 @@ function ChannelPlaceholder() {
|
||||
</PageHeader>
|
||||
|
||||
<div className="placeholder">
|
||||
<Ghost width={80} />
|
||||
<div className="floating">
|
||||
<Ghost width={80} />
|
||||
</div>
|
||||
<div className="primary">
|
||||
<Text id="app.main.channel.errors.title" />
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user