Fix column width on the home page

This commit is contained in:
yehor
2025-07-20 20:09:13 +03:00
parent ff4c256544
commit 95ce34b12b
4 changed files with 18 additions and 2 deletions

View File

@@ -30,4 +30,16 @@
--ifm-color-primary-lightest: #d1b2d1;
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
--ifm-link-color: var(--ifm-color-primary-darker);
}
@media (max-width: 996px) {
.col {
--ifm-col-width: 50%;
}
}
@media (max-width: 500px) {
.col {
--ifm-col-width: 100%;
}
}