refactor: adjust spacing and text styling in network feature components

- Reduced NetworkCapabilities description margin from mt-3 to mt-2 and removed text-lg class
- Changed PrimaryFeatures mobile description from color="secondary" to text-gray-200 with mt-2 (note: appears to have typo "mt-" instead of "mt-2")
This commit is contained in:
2025-11-19 18:04:06 +01:00
parent e6b194e8c7
commit b21f874a05
2 changed files with 2 additions and 2 deletions

View File

@@ -30,7 +30,7 @@ export function NetworkCapabilities() {
One network for all your connectivity needs. One network for all your connectivity needs.
</P> </P>
<P className="mt-3 text-lg text-gray-200"> <P className="mt-2 text-gray-200">
Mycelium replaces separate layers like VPNs, hosting, and DNS with a single encrypted, peer-to-peer system that links devices, apps, and environments directly. Mycelium replaces separate layers like VPNs, hosting, and DNS with a single encrypted, peer-to-peer system that links devices, apps, and environments directly.
</P> </P>
</div> </div>

View File

@@ -369,7 +369,7 @@ function FeaturesMobile() {
<MobileFeatureTitle color="white" className="mt-6"> <MobileFeatureTitle color="white" className="mt-6">
{feature.name} {feature.name}
</MobileFeatureTitle> </MobileFeatureTitle>
<FeatureDescription color="secondary" className="mt-2"> <FeatureDescription className="mt- text-gray-200">
{feature.description} {feature.description}
</FeatureDescription> </FeatureDescription>
</div> </div>