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>

View File

@@ -105,7 +105,7 @@ const Settings = () => {
</div>
<div className="mt-10 border-t border-gray-200 pt-4">
<div className="neuro-flat p-3 rounded-lg">
<div>
<h2 className="text-sm font-medium text-gray-500 mb-2 px-2"> </h2>
<AppVersionInfo showDevInfo={true} editable={true} />
</div>