lib.itmens/common/static/scss/_footer.scss

32 lines
463 B
SCSS
Raw Permalink Normal View History

body>footer {
2023-06-10 23:13:14 -04:00
font-size: 80%;
2023-06-09 09:36:18 -04:00
text-align: center;
margin-bottom: 4px;
2023-06-10 23:13:14 -04:00
width: 60%;
2023-06-09 09:36:18 -04:00
transform: translateX(-50%);
position: absolute;
clear: both;
left: 50%;
@media (max-width: 768px) {
width: 80%;
}
>div.grid {
padding-top: 4px;
2023-06-10 23:13:14 -04:00
padding-left: 15%;
padding-right: 15%;
2023-06-09 09:36:18 -04:00
@media (max-width: 768px) {
grid-template-columns: 1fr 1fr 1fr;
}
>div {
white-space: nowrap;
min-width: 15vw;
}
}
}