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
5 changes: 3 additions & 2 deletions src/components/ChoiceGroup/ChoiceGroup.scss
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ $ms-choiceField-transition-timing: cubic-bezier(.4, 0, .23, 1);
min-height: 36px;
border: 1px solid transparent;
position: relative;
line-height: $ms-choiceField-field-size;
@include padding-left(8px);

.ms-Label {
Expand Down Expand Up @@ -72,8 +73,8 @@ $ms-choiceField-transition-timing: cubic-bezier(.4, 0, .23, 1);
height: 0;
border-radius: 50%;
position: absolute;
top: 8px;
@include left(8px);
top: $ms-choiceField-field-size / 2;
@include left($ms-choiceField-field-size / 2);
bottom: 0;
@include right(0);
transition-property: top, left, right, width, height;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export class CalloutDirectionalExample extends React.Component<any, ICalloutDire
<div className='ms-Callout-inner'>
<div className='ms-Callout-content'>
<p className='ms-Callout-subText'>
Message body is optional.If help documentation is available, consider adding a link to learn more at the bottom.
Message body is optional. If help documentation is available, consider adding a link to learn more at the bottom.
</p>
</div>
</div>
Expand Down