Refactor: Simplify AppVersionInfo background

Removed background styling from AppVersionInfo component for a cleaner look.
This commit is contained in:
gpt-engineer-app[bot]
2025-03-18 14:32:04 +00:00
parent 7122a0b8bc
commit 75dc157d15
2 changed files with 7 additions and 7 deletions

View File

@@ -109,22 +109,22 @@ const AppVersionInfo: React.FC<AppVersionInfoProps> = ({
return <div className={className}>
<div className="space-y-3">
<div>
<Label htmlFor="versionName"> </Label>
<div className="neuro-pressed p-3 rounded-md text-base mt-1">
<Label htmlFor="versionName" className="text-gray-600"> </Label>
<div className="p-2 text-base mt-1">
{editableVersionName}
</div>
</div>
<div>
<Label htmlFor="buildNumber"> </Label>
<div className="neuro-pressed p-3 rounded-md text-base mt-1">
<Label htmlFor="buildNumber" className="text-gray-600"> </Label>
<div className="p-2 text-base mt-1">
{editableBuildNumber}
</div>
</div>
<div>
<Label htmlFor="notes"> </Label>
<div className="neuro-pressed p-3 rounded-md text-base mt-1 h-20">
<Label htmlFor="notes" className="text-gray-600"> </Label>
<div className="p-2 text-base mt-1">
. .
</div>
</div>