Skip to content

Commit

Permalink
docs: remove unused css class from example
Browse files Browse the repository at this point in the history
  • Loading branch information
philmtd committed Feb 27, 2023
1 parent 94c5084 commit efc78ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions documentation/src/components/examples/example7.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ import React from 'react';

const attributesCode = `<div data-layout="row">
<span data-flex-xs data-flex-md data-flex-xl>One</span>
<span class="green" data-flex-sm data-flex-lg>Two</span>
<span data-flex-sm data-flex-lg>Two</span>
</div>`;

const classesCode = `<div class="fx-layout-row">
<span class="fx-flex--xs fx-flex--md fx-flex--xl">One</span>
<span class="green fx-flex--sm fx-flex--lg">Two</span>
<span class="fx-flex--sm fx-flex--lg">Two</span>
</div>`;

export default {
Expand Down

0 comments on commit efc78ca

Please sign in to comment.