mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2026-03-03 22:31:52 +00:00
Removed hardcoded display: inline for BooleanControls
This commit is contained in:
@@ -24,7 +24,7 @@ const BooleanControl: FC<BooleanControlWithTypeProps> = (
|
||||
};
|
||||
|
||||
return (
|
||||
<span className={classNames('custom-control', typeClasses, className)} style={{ display: 'inline' }}>
|
||||
<span className={classNames('custom-control', typeClasses, className)}>
|
||||
<input type="checkbox" className="custom-control-input" id={id} checked={checked} onChange={onChecked} />
|
||||
<label className="custom-control-label" htmlFor={id}>{children}</label>
|
||||
</span>
|
||||
|
||||
Reference in New Issue
Block a user