Skip to content

Commit

Permalink
fix: invalid link warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
dansiegel committed Feb 15, 2024
1 parent ddfd526 commit 3d41253
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
7 changes: 2 additions & 5 deletions docfx.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"*.md"
],
"exclude": [
"README.md",
"obj/**",
"_site/**"
]
Expand All @@ -20,11 +21,7 @@
{
"files": [
"index.html",
"images/**",
"docs/getting-started/images/**",
"docs/platforms/maui/images/**",
"docs/platforms/wpf/images/**",
"docs/platforms/xamarin-forms/images/**"
"**/images/**"
],
"exclude": [
".github/**",
Expand Down
4 changes: 2 additions & 2 deletions docs/platforms/xamarin-forms/dialogs/styling-dialogs.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ The Dialog Service has several extensibility points to help your provide richly

There may be times in which you want to ensure that your Dialog is sized relative to the size of your user's screen.

![Dialog Demo](../../images/demodialog-small.png)
![Dialog Demo](../../../images/demodialog-small.png)

You'll notice from this screenshot that the Dialog is sized slightly larger than the content of view. In order to achieve a consistent size for your dialog you may want to set the Relative Height or Width properties on the DialogLayout.

Expand Down Expand Up @@ -35,7 +35,7 @@ Under the covers, the Dialog Service uses an Absolute Layout to position the con
x:Class="HelloWorld.Views.DemoDialog">
```

![Custom Layout](../../Images/useralert-small.png)
![Custom Layout](../../../Images/useralert-small.png)

## Background Mask

Expand Down

0 comments on commit 3d41253

Please sign in to comment.