[mob][photos] Fix shadows in send link icon

This commit is contained in:
ashilkn
2024-06-03 18:35:58 +05:30
parent 482239ce8d
commit 8b44165b77

View File

@@ -100,29 +100,23 @@ class __BodyState extends State<_Body> {
color: getEnteColorScheme(context).primary300,
shadows: const [
BoxShadow(
color: Color.fromARGB(30, 0, 179, 60),
color: Color.fromARGB(12, 0, 179, 60),
offset: Offset(0, 2.51),
blurRadius: 5.02,
spreadRadius: 0,
),
BoxShadow(
color: Color.fromARGB(61, 0, 179, 60),
color: Color.fromARGB(24, 0, 179, 60),
offset: Offset(0, 1.25),
blurRadius: 3.76,
spreadRadius: 0,
),
BoxShadow(
color: Color.fromARGB(61, 0, 179, 60),
color: Color.fromARGB(24, 0, 179, 60),
offset: Offset(0, 0.63),
blurRadius: 1.88,
spreadRadius: 0,
),
BoxShadow(
color: Color.fromARGB(61, 255, 255, 255),
offset: Offset(0.63, 0.63),
blurRadius: 1.25,
spreadRadius: 0,
),
],
),
)