fix: replace flex-shrink-0 with shrink-0 for consistent styling across components
This commit is contained in:
@@ -33,7 +33,7 @@ export default function CertificateCleanupDialog({
|
||||
>
|
||||
<form onSubmit={handleSubmit}>
|
||||
<div className="flex items-start gap-3 mb-4">
|
||||
<div className="flex-shrink-0 w-10 h-10 rounded-full bg-orange-900/30 flex items-center justify-center">
|
||||
<div className="shrink-0 w-10 h-10 rounded-full bg-orange-900/30 flex items-center justify-center">
|
||||
<AlertTriangle className="h-5 w-5 text-orange-400" />
|
||||
</div>
|
||||
<div className="flex-1">
|
||||
|
||||
@@ -32,7 +32,7 @@ export default function ImportSuccessModal({
|
||||
<div className="relative bg-dark-card rounded-lg p-6 w-[500px] max-w-full mx-4 border border-gray-800">
|
||||
{/* Header */}
|
||||
<div className="flex items-center gap-3 mb-6">
|
||||
<div className="flex-shrink-0 w-12 h-12 rounded-full bg-green-900/30 flex items-center justify-center">
|
||||
<div className="shrink-0 w-12 h-12 rounded-full bg-green-900/30 flex items-center justify-center">
|
||||
<CheckCircle className="h-6 w-6 text-green-400" />
|
||||
</div>
|
||||
<div>
|
||||
@@ -101,7 +101,7 @@ export default function ImportSuccessModal({
|
||||
{created > 0 && (
|
||||
<div className="bg-blue-900/20 border border-blue-800/50 rounded-lg p-4 mb-6">
|
||||
<div className="flex items-start gap-3">
|
||||
<Info className="h-4 w-4 text-blue-400 mt-0.5 flex-shrink-0" />
|
||||
<Info className="h-4 w-4 text-blue-400 mt-0.5 shrink-0" />
|
||||
<div>
|
||||
<p className="text-sm font-medium text-blue-300">Certificate Provisioning</p>
|
||||
<p className="text-xs text-gray-400 mt-1">
|
||||
|
||||
Reference in New Issue
Block a user