Skip to content

Commit 19a99f5

Browse files
authored
fix outlook mac trimming (#3)
1 parent 8e3c1a2 commit 19a99f5

File tree

4 files changed

+17
-1
lines changed

4 files changed

+17
-1
lines changed

src/Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Project>
33
<PropertyGroup>
44
<NoWarn>CS1591;CS0649;NU1608;NU1109</NoWarn>
5-
<Version>0.1.0</Version>
5+
<Version>0.1.1</Version>
66
<AssemblyVersion>0.1.0</AssemblyVersion>
77
<LangVersion>preview</LangVersion>
88
<PackageTags>Email, Preview, Verify</PackageTags>
-97 KB
Loading
-112 KB
Loading

src/Verify.EmailPreviewServices/Devices.cs

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -261,6 +261,22 @@ static Devices()
261261
Right = 29,
262262
Bottom = 13
263263
},
264+
[Device.Outlook2019MacDark] = new()
265+
{
266+
Top = 166,
267+
BottomTolerance = 10,
268+
Left = 23,
269+
Right = 10,
270+
Bottom = 10
271+
},
272+
[Device.Outlook2019MacLight] = new()
273+
{
274+
Top = 231,
275+
BottomTolerance = 10,
276+
Left = 23,
277+
Right = 10,
278+
Bottom = 10
279+
},
264280
[Device.OutlookWebChrome] = new()
265281
{
266282
Top = 255,

0 commit comments

Comments
 (0)