diff --git a/app/lib/widgets/info_layer.dart b/app/lib/widgets/info_layer.dart index 565b09729b16bea009bfbd7c69ef90c26cf31a29..535a266be0c2413e460027ccd50f4ed5a493c27d 100644 --- a/app/lib/widgets/info_layer.dart +++ b/app/lib/widgets/info_layer.dart @@ -65,7 +65,7 @@ class InfoLayerState extends State<InfoLayer> { SingleChildScrollView( child: Container( padding: const EdgeInsets.all(45), - color: Colors.black.withOpacity(0.8), + color: Colors.black.withOpacity(0.85), child: Column( mainAxisAlignment: MainAxisAlignment.center, // Align contents vertically centered children: [ @@ -90,9 +90,9 @@ class InfoLayerState extends State<InfoLayer> { ), const SizedBox(height: 10), Text( - 'The higher the accuracy, the more likely it is that the displayed ice thickness' + 'The higher the accuracy, the more likely that the displayed ice thickness' 'is correct. The accuracy depends on' - 'which data sources are used to calculate the thickness. ', + ' which data sources are utilized in the determination of the thickness. ', style: regTextStyle, textAlign: TextAlign.center, ), @@ -103,6 +103,7 @@ class InfoLayerState extends State<InfoLayer> { '• 4/4: both API and sensor data, with a discrepancy of <1.0cm', style: regTextStyle, ), + const SizedBox(height: 80), ], ), ),