Skip to content
Snippets Groups Projects
Commit ef332098 authored by OndraRehounek's avatar OndraRehounek
Browse files

main: fix footer finally

parent e7bac6e4
No related branches found
No related tags found
2 merge requests!607Pirati.cz,!575Feature/pirati cz
Pipeline #9554 passed
...@@ -25,19 +25,18 @@ ...@@ -25,19 +25,18 @@
.footer__main-links { .footer__main-links {
grid-area: main-links; grid-area: main-links;
.footer__main--link {
@apply mt-6 w-fit xl:mr-2
}
ul { ul {
display: grid; display: flex;
grid-auto-columns: minmax(160px, auto); flex-flow: row wrap;
grid-auto-flow: column; max-height: 320px;
grid-gap: 10px; writing-mode: vertical-lr; /* workaround for long-living bug https://stackoverflow.com/a/39102894/7113416 */
grid-template-rows: repeat(12, 40px);
@screen sm { li {
grid-template-rows: repeat(6, 40px); display: block;
height: 40px;
line-height: 40px;
min-width: 150px;
writing-mode: initial; /* workaround revert from above */
} }
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment