Style fix for the PnP Controls sample web part (#318)
This commit is contained in:
parent
f1f01ec43b
commit
425d4a7d3e
|
@ -13,7 +13,7 @@
|
|||
"dependencies": {
|
||||
"@microsoft/sp-core-library": "~1.2.0",
|
||||
"@microsoft/sp-webpart-base": "~1.2.0",
|
||||
"@pnp/spfx-controls-react": "1.0.0-beta.2",
|
||||
"@pnp/spfx-controls-react": "1.0.0-beta.5",
|
||||
"@pnp/spfx-property-controls": "1.0.0-beta.1",
|
||||
"@types/react": "15.0.38",
|
||||
"@types/react-addons-shallow-compare": "0.14.17",
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
import * as React from 'react';
|
||||
import * as moment from 'moment';
|
||||
import styles from './PnPControls.module.scss';
|
||||
import { IPnPControlsProps, IPnpControlsState } from './IPnPControlsProps';
|
||||
import { Spinner, SpinnerSize } from 'office-ui-fabric-react/lib/components/Spinner';
|
||||
import { Placeholder } from '@pnp/spfx-controls-react/lib/Placeholder';
|
||||
|
@ -134,7 +133,7 @@ export default class PnPControls extends React.Component<IPnPControlsProps, IPnp
|
|||
}
|
||||
|
||||
return (
|
||||
<div className={styles.pnpControls}>
|
||||
<div>
|
||||
{
|
||||
this.state.loading ?
|
||||
(
|
||||
|
|
Loading…
Reference in New Issue