Enhance styling consistency and alignment in Admin Panel
Centered elements in the Admin Panel using `justifyItems: "center"`. Adjusted input padding, font size, and primary button styling for improved layout and usability.
This commit is contained in:
@@ -137,7 +137,14 @@ export default function AdminPanel() {
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<div style={{ marginTop: 12, display: "grid", gap: 8 }}>
|
||||
<div
|
||||
style={{
|
||||
marginTop: 12,
|
||||
display: "grid",
|
||||
gap: 8,
|
||||
justifyItems: "center", // <<< zentriert alles
|
||||
}}
|
||||
>
|
||||
<input
|
||||
value={displayName}
|
||||
onChange={(e) => setDisplayName(e.target.value)}
|
||||
|
||||
Reference in New Issue
Block a user