Files
front/src/pages/css/home.css
Nikolai Petukhov 2a56274ca9 login pages are done
2024-09-21 17:03:09 +03:00

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