Skip to content
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
2 changes: 1 addition & 1 deletion src/components/Callout/Callout.Props.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export interface ICalloutProps extends React.Props<Callout>, IPositionProps {

/**
* The gap space between the target element and the callout.
* @default 20
* @default 16
*/
gapSpace?: number;

Expand Down
2 changes: 1 addition & 1 deletion src/components/Callout/Callout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export class Callout extends React.Component<ICalloutProps, ICalloutState> {
isBeakVisible: true,
beakStyle: 'ms-Callout-beak',
beakWidth: 28,
gapSpace: 10,
gapSpace: 16,
directionalHint: DirectionalHint.rightCenter
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,7 @@ export class CalloutDirectionalExample extends React.Component<any, ICalloutDire
this.state = {
isCalloutVisible: false,
isBeakVisible: true,
directionalHint: DirectionalHint.bottomLeftEdge,
gapSpace: 10
directionalHint: DirectionalHint.bottomLeftEdge
};
}

Expand Down Expand Up @@ -81,8 +80,6 @@ export class CalloutDirectionalExample extends React.Component<any, ICalloutDire
isBeakVisible={ isBeakVisible }
onDismiss={ this._onDismiss }
directionalHint={ directionalHint }
beakStyle={ 'ms-Callout-smallbeak' }
beakWidth={ 16 }
>
<div className='ms-Callout-header'>
<p className='ms-Callout-title'>
Expand Down