mirror of
https://github.com/tauri-apps/tauri-docs.git
synced 2026-01-31 00:35:16 +01:00
Signed-off-by: Lorenzo Lewis <lorenzo_lewis@icloud.com> Co-authored-by: Vitor Ayres <gitkey@virtuaires.com.br>
54 lines
1.0 KiB
Plaintext
54 lines
1.0 KiB
Plaintext
---
|
|
import OpenCollective from './OpenCollective/Collective.astro';
|
|
import GitHubSponsor from './GitHub/Sponsors.astro';
|
|
import Partners from './Partners.astro';
|
|
---
|
|
|
|
<div class="not-content" style="margin-top: 6rem;">
|
|
<section>
|
|
<div class="funding-source">
|
|
<h4>Open Collective Sponsors</h4>
|
|
<OpenCollective />
|
|
</div>
|
|
<div class="funding-source">
|
|
<h4>GitHub Sponsors</h4>
|
|
<GitHubSponsor />
|
|
</div>
|
|
</section>
|
|
|
|
<section>
|
|
<h2 class="text-center">Supported by</h2>
|
|
<Partners />
|
|
</section>
|
|
</div>
|
|
|
|
<style>
|
|
/* todo: add styles for headings h2, h3, h4 */
|
|
h2 {
|
|
margin-bottom: 1rem;
|
|
font-size: 2.75rem;
|
|
font-weight: bold;
|
|
}
|
|
|
|
h4 {
|
|
/* border 50% opacity */
|
|
border-bottom: 1px solid var(--sl-color-gray-6);
|
|
margin-bottom: 0.5rem;
|
|
font-size: 1.25rem;
|
|
font-weight: 600;
|
|
text-align: center;
|
|
display: inline;
|
|
}
|
|
|
|
section {
|
|
margin-bottom: 8rem;
|
|
}
|
|
|
|
.funding-source {
|
|
margin-bottom: 4rem;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
</style>
|