fix: removed button margin, so they all have the same size

This commit is contained in:
averel10
2026-04-03 08:02:09 +02:00
parent 8e3ee07d9f
commit 783be3399c
4 changed files with 4 additions and 4 deletions

View File

@@ -184,7 +184,7 @@ export default function CalibrationListModal({ experimentId }: CalibrationListMo
<>
<button
onClick={() => setIsOpen(true)}
className="mb-6 px-4 py-2 bg-blue-500 text-white rounded-md hover:bg-blue-600 transition-colors"
className="px-4 py-2 bg-blue-500 text-white rounded-md hover:bg-blue-600 transition-colors"
>
📋 View Calibration List
</button>

View File

@@ -219,7 +219,7 @@ export default function UpdateDatasetMetadataModal({
<>
<button
onClick={() => setIsOpen(true)}
className="mb-6 px-4 py-2 bg-blue-500 text-white rounded-md hover:bg-blue-600 transition-colors"
className="px-4 py-2 bg-blue-500 text-white rounded-md hover:bg-blue-600 transition-colors"
>
Update Metadata
</button>

View File

@@ -219,7 +219,7 @@ export default function UploadCalibrationModal({
<>
<button
onClick={() => setIsOpen(true)}
className="mb-6 px-4 py-2 bg-purple-500 text-white rounded-md hover:bg-purple-600 transition-colors"
className="px-4 py-2 bg-purple-500 text-white rounded-md hover:bg-purple-600 transition-colors"
>
+ Upload Calibration
</button>

View File

@@ -219,7 +219,7 @@ export default function UploadDatasetEntriesModal({
<>
<button
onClick={() => setIsOpen(true)}
className="mb-6 px-4 py-2 bg-green-500 text-white rounded-md hover:bg-green-600 transition-colors"
className="px-4 py-2 bg-green-500 text-white rounded-md hover:bg-green-600 transition-colors"
>
+ Upload Entries
</button>