32 lines
444 B
CSS
32 lines
444 B
CSS
.homeWrapper {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.homeWrapper p {
|
|
font-size: 2.5vw;
|
|
font-weight: 500;
|
|
margin-top: 0;
|
|
}
|
|
|
|
@media only screen and (max-width: 800px) {
|
|
.homeWrapper p {
|
|
font-size: 3vh;
|
|
}
|
|
}
|
|
|
|
.ChatsList {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
|
|
margin: 3rem;
|
|
}
|
|
|
|
.headerPos {
|
|
position: absolute;
|
|
top: 3vw;
|
|
right: 3vw;
|
|
}
|