Skip to content
This repository has been archived by the owner on Sep 5, 2024. It is now read-only.

fix(layouts): interpolated values, validations, test & CSS fixes #5090

Closed
wants to merge 1 commit into from
Closed
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
3 changes: 2 additions & 1 deletion docs/app/css/layout-demo.css
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ demo-include {
margin-top: 16px;
}

.layout-demo :not(.md-layout) {
.layout-demo :not(.layout-row),
.layout-demo :not(.layout-column) {
border: 1px solid #eee;
padding: 8px;
}
Expand Down
8 changes: 4 additions & 4 deletions docs/app/partials/layout-options.tmpl.html
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@
<demo-file name="index.html">
<div layout="row" layout-wrap class="colorNested-noPad">
<div flex="33">[flex=33]</div>
<div flex="66">[flex=67]</div>
<div flex="66">[flex=67]</div>
<div flex="67">[flex=67]</div>
<div flex="67">[flex=67]</div>
<div flex="33">[flex=33]</div>
</div>
</demo-file>
Expand All @@ -98,10 +98,10 @@
<docs-demo demo-title="Responsive Flex & Offset Attributes" class="small-demo">
<demo-file name="index.html">
<div layout="row" class="colorNested">
<div flex="66" flex-sm="33">
<div flex="66" flex-sm="34">
I flex to one-third of the space on mobile, and two-thirds on other devices.
</div>
<div flex="33" flex-sm="66">
<div flex="34" flex-sm="66">
I flex to two-thirds of the space on mobile, and one-third on other devices.
</div>
</div>
Expand Down
Loading