refactor: polish spacing details (Phase 3 - Low-Impact)

This commit is contained in:
2026-04-19 18:45:14 +03:00
parent 12b2ef26cf
commit 7eafd45ab1
5 changed files with 18 additions and 18 deletions

View File

@@ -25,7 +25,7 @@ export default function IdentityManager({
}: IdentityManagerProps) {
return (
<div className="bg-surface/50 border border-slate-800/50 rounded-[2.5rem] p-4 md:p-6 flex flex-col shadow-2xl transition-all group/identity h-full">
<div className="flex items-center justify-between mb-6">
<div className="flex items-center justify-between mb-4">
<div className="flex items-center gap-4">
<div className="w-10 h-10 rounded-xl bg-primary/10 flex items-center justify-center text-primary border border-primary/20">
<User size={20} />
@@ -87,7 +87,7 @@ export default function IdentityManager({
{editingUser && (
<div className="fixed inset-0 z-[100] flex items-center justify-center p-4 bg-background/80 animate-in fade-in duration-200">
<div className="bg-surface border border-slate-800 rounded-[2.5rem] p-6 w-full max-w-md shadow-2xl">
<div className="flex justify-between items-center mb-4">
<div className="flex justify-between items-center mb-2">
<h3 className="text-xl font-normal text-white tracking-tight">Edit Identity</h3>
<button
onClick={() => setEditingUser(null)}