Merge branch 'feat/ui-1.0.3' into 'test'

fix(Questions): Change welcome card button to normal button

See merge request opensource/answer!414
This commit is contained in:
贾海涛(龙笛)
2023-01-10 09:02:08 +00:00
+2 -2
View File
@@ -39,10 +39,10 @@ const Questions: FC = () => {
})}
</h5>
<p className="card-text">{siteInfo.description}</p>
<Link to="/users/login" className="card-link btn btn-primary">
<Link to="/users/login" className="btn btn-primary">
{t('login', { keyPrefix: 'btns' })}
</Link>
<Link to="/users/register" className="card-link">
<Link to="/users/register" className="btn btn-link ms-2">
{t('signup', { keyPrefix: 'btns' })}
</Link>
</div>