fix: remove padding from username field (#6356)

pull/6357/head
Nafees Nazik 2023-01-10 00:05:00 +05:30 committed by GitHub
parent abdf72dc0f
commit ca9a836300
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -187,7 +187,7 @@ const PremiumTextfield = (props: ICustomUsernameProps) => {
<div className="flex justify-items-center">
<Label htmlFor="username">{t("username")}</Label>
</div>
<div className="mt-2 flex rounded-md">
<div className="flex rounded-md">
<span
className={classNames(
isInputUsernamePremium ? "border-1 border-orange-400 " : "",

View File

@ -118,7 +118,7 @@ const UsernameTextfield = (props: ICustomUsernameProps) => {
return (
<div>
<div className="mt-2 flex rounded-md">
<div className="flex rounded-md">
<div className="relative w-full">
<TextField
ref={usernameRef}