frontend/styles/Home.module.css

14 lines
194 B
CSS
Raw Normal View History

2022-10-22 22:40:21 +03:00
.container{
2022-10-21 17:44:22 +03:00
display: flex;
flex-direction: column;
align-items: center;
2022-10-22 22:40:21 +03:00
gap:100px;
padding:100px;
2022-10-21 17:44:22 +03:00
}
2022-10-23 02:08:58 +03:00
@media screen and (max-width: 800px) {
.container{
padding: 75px 30px;
}
}