feat(15d): complete localization of full-guide page to PT

This commit is contained in:
Marcos Paulo
2026-09-05 22:30:50 +00:00
parent c022a93302
commit 054393f7af
38 changed files with 1322 additions and 325 deletions
@@ -24,7 +24,7 @@ const { label, columns = 3 } = Astro.props;
.grid {
display: grid;
grid-template-columns: repeat(var(--columns), 1fr);
gap: 1px; /* hairline separators, drawn by the parent background */
gap: 1px; /* hairline separators, drawn by the parent background */
background: var(--line);
}
@@ -34,6 +34,8 @@ const { label, columns = 3 } = Astro.props;
}
@media (max-width: 800px) {
.grid { grid-template-columns: 1fr; }
.grid {
grid-template-columns: 1fr;
}
}
</style>