change follow us link alignments

This commit is contained in:
2026-02-16 16:27:39 +02:00
parent d4ba3aaa03
commit c5267c0540
2 changed files with 4 additions and 4 deletions

View File

@@ -125,7 +125,7 @@ class _MihProfileLinksState extends State<MihProfileLinks> {
padding: widget.paddingOn == null || widget.paddingOn! padding: widget.paddingOn == null || widget.paddingOn!
? MzansiInnovationHub.of(context)!.theme.screenType == "desktop" ? MzansiInnovationHub.of(context)!.theme.screenType == "desktop"
? EdgeInsets.symmetric(horizontal: width * 0.2) ? EdgeInsets.symmetric(horizontal: width * 0.2)
: EdgeInsets.symmetric(horizontal: width * 0.075) : EdgeInsets.symmetric(horizontal: width * 0)
: EdgeInsetsGeometry.all(0), : EdgeInsetsGeometry.all(0),
child: widget.links.isEmpty child: widget.links.isEmpty
? SizedBox( ? SizedBox(
@@ -144,8 +144,8 @@ class _MihProfileLinksState extends State<MihProfileLinks> {
) )
: Wrap( : Wrap(
alignment: WrapAlignment.center, alignment: WrapAlignment.center,
runSpacing: 15, runSpacing: 10,
spacing: 15, spacing: 10,
children: widget.links.map( children: widget.links.map(
(link) { (link) {
return SizedBox( return SizedBox(

View File

@@ -874,7 +874,7 @@ class _MihInfoState extends State<MihInfo> {
), ),
MihProfileLinks(links: links), MihProfileLinks(links: links),
const SizedBox( const SizedBox(
height: 25, height: 75,
), ),
], ],
); );