19 lines
268 B
SCSS
Raw Normal View History

.container {
padding: 55px 10px 80px; // 80px for footer
}
2016-05-22 20:25:38 +03:00
.footer {
2020-05-24 02:08:24 +03:00
width: 100%;
position: absolute;
bottom: 10px;
2021-03-26 04:19:04 +01:00
inset-inline-start: 0;
2016-05-27 23:23:53 +03:00
2020-05-24 02:08:24 +03:00
text-align: center;
2016-05-22 20:25:38 +03:00
}
@media (max-width: 720px) {
2020-05-24 02:08:24 +03:00
.container {
padding-top: 20px;
}
}