mirror of
https://github.com/element-hq/element-web
synced 2024-11-27 11:47:23 +03:00
Remove semicolon in style
This commit is contained in:
parent
05d0309081
commit
74174041bb
1 changed files with 1 additions and 1 deletions
|
@ -86,7 +86,7 @@ export default class Slider extends React.Component<IProps> {
|
|||
const offset = this.offset(this.props.values, this.props.value);
|
||||
selection = <div className="mx_Slider_selection">
|
||||
<div className="mx_Slider_selectionDot" style={{left: "calc(-0.55em + " + offset + "%)"}} />
|
||||
<hr style={{width: offset + "%;"}} />
|
||||
<hr style={{width: offset + "%"}} />
|
||||
</div>;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue