Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Custom Drawer Width Demo. Readme contribution updates #701

Merged
merged 1 commit into from
Sep 2, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,13 +112,18 @@ If you think that this project helped you or your company in any way, you can co


## Contributing
We'd greatly appreciate any contribution you make. :)
We'd greatly appreciate any contribution you make. :)
Also we have official [Contributors team](https://github.com/SamProf/MatBlazor/issues/474):
- [SamProf](https://github.com/SamProf) - creator
- [enkodellc](https://github.com/enkodellc)
- [lindespang](https://github.com/lindespang)
- [RonPeters](https://github.com/RonPeters)

- Please do not include the compiled .js / .css in your PR's. These are autogenerated during builds and get rewritten.
- For PR's with UI updates please take a few minutes to review the Demo component for the changes and add the new
functionality in Demo for the component you are editing. Not only will this allow for easier testing / merging of your PR
it will give others an opportunity to see the capabilities of MatBlazor.

## News

### Roadmap
Expand Down
6 changes: 3 additions & 3 deletions src/MatBlazor.Demo/Demo/DemoMatDrawer.razor
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
</DemoContainer>


<h5 class="mat-h5">Responsive</h5>
<h5 class="mat-h5">Responsive with Custom Width</h5>
<DemoContainer SourcePath=".\..\..\MatBlazor.Demo\Frames\MatDrawerResponsivePageFrame.razor">
<Content>
<iframe src="MatDrawerResponsiveFrame" style="width: 100%; height: 50%;"></iframe>
Expand All @@ -90,7 +90,7 @@
<BlazorFiddle Template="MatBlazor" Code=@(@"@page ""/MatDrawerResponsiveFrame""


<MatDrawerContainer Style=""width: 100vw; height: 100vh;"">
<MatDrawerContainer Style=""height: 100vh;"" DrawerWidth=""400px"">
<MatHidden Breakpoint=""@MatBreakpoint.SM"" Direction=""@MatHiddenDirection.Up"">
<ChildContent>
<MatDrawer @bind-Opened=""@Opened"" Mode=""@MatDrawerMode.Modal"">
Expand All @@ -100,7 +100,7 @@

<ElseContent>
<MatDrawer @bind-Opened=""@Opened"" Mode=""@MatDrawerMode.Dismissible"">
Drawer Content
400px Custom Width Drawer Content
</MatDrawer>
</ElseContent>
</MatHidden>
Expand Down
6 changes: 3 additions & 3 deletions src/MatBlazor.Demo/Frames/MatDrawerResponsivePageFrame.razor
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
@page "/MatDrawerResponsiveFrame"


<MatDrawerContainer Style="width: 100vw; height: 100vh;">
<MatDrawerContainer Style="height: 100vh;" DrawerWidth="400px">
<MatHidden Breakpoint="@MatBreakpoint.SM" Direction="@MatHiddenDirection.Up">
<ChildContent>
<MatDrawer @bind-Opened="@Opened" Mode="@MatDrawerMode.Modal">
Drawer Content
Drawer Content
</MatDrawer>
</ChildContent>

<ElseContent>
<MatDrawer @bind-Opened="@Opened" Mode="@MatDrawerMode.Dismissible">
Drawer Content
400px Custom Width Drawer Content
</MatDrawer>
</ElseContent>
</MatHidden>
Expand Down