mirror of
https://gitea.com/gitea/docs.git
synced 2026-06-23 20:55:55 +00:00
Close #46 Same as those in [blog](https://gitea.com/gitea/blog/pulls/272), but for docs and api Ejected DocPage (unsafe to eject) and ApiDoc (safe to eject) for layout changes  Screenshots  Co-authored-by: techknowlogick <techknowlogick@noreply.gitea.com> Co-authored-by: techknowlogick <techknowlogick@gitea.io> Reviewed-on: https://gitea.com/gitea/gitea-docusaurus/pulls/47 Co-authored-by: HesterG <hestergong@gmail.com> Co-committed-by: HesterG <hestergong@gmail.com>
20 lines
278 B
CSS
20 lines
278 B
CSS
.cards {
|
|
display: grid;
|
|
gap: 1.5rem;
|
|
}
|
|
|
|
.card__link {
|
|
text-transform: uppercase;
|
|
font-size: var(--font-size-normal);
|
|
}
|
|
|
|
.card__link:not(:last-child) {
|
|
margin-right: 1.5rem;
|
|
}
|
|
|
|
@media screen and (min-width: 768px) {
|
|
.cards {
|
|
grid-template-columns: 1fr 1fr;
|
|
}
|
|
}
|