fix: decorative image takes focus

Decorative image on /login, /register and /reset page was taking focus on IE11

VAN-510
This commit is contained in:
Syed Sajjad Hussain Shah
2022-06-27 11:48:48 +05:00
parent 029f201a46
commit 1eded91f24
6 changed files with 62 additions and 37 deletions

View File

@@ -23,13 +23,17 @@ const AuthExtraLargeLayout = (props) => {
<div>
<Row>
<Col xs={3}>
<svg className={classNames(
'ml-5 mt-5',
{
'extra-large-svg-line': variant === 'xl',
'extra-extra-large-svg-line': variant === 'xxl',
},
)}
<svg
role="img"
aria-label=""
focusable={false}
className={classNames(
'ml-5 mt-5',
{
'extra-large-svg-line': variant === 'xl',
'extra-extra-large-svg-line': variant === 'xxl',
},
)}
>
<line x1="60" y1="0" x2="5" y2="220" />
</svg>