Skip to content

Commit

Permalink
style: add semicolons to css in attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
web-padawan committed Mar 21, 2019
1 parent 1fe8b96 commit a1205dc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion demo/split-layout-integration-demos.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ <h3>Google Maps</h3>
}
</style>
</custom-style>
<vaadin-split-layout style="height: 300px">
<vaadin-split-layout style="height: 300px;">
<iframe src="//maps.google.com/maps?q=Turku&amp;output=embed" title="Map of Turku"></iframe>
<iframe src="//maps.google.com/maps?q=Malta&amp;output=embed" title="Map of Malta"></iframe>
</vaadin-split-layout>
Expand Down
4 changes: 2 additions & 2 deletions demo/split-layout-theme-demos.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ <h3>Small</h3>
flex: auto;
}
</style>
<div style="display: flex">
<div style="display: flex;">
<vaadin-split-layout theme="small">
<div>First content element</div>
<div>Second content element</div>
Expand All @@ -39,7 +39,7 @@ <h3>Minimal</h3>
flex: auto;
}
</style>
<div style="display: flex">
<div style="display: flex;">
<vaadin-split-layout theme="minimal">
<div style="background-color: lightgray;">Custom background color</div>
<div>Second content element</div>
Expand Down

0 comments on commit a1205dc

Please sign in to comment.