fix(admin): adjust admin panel settings style (#11291)

Adjusted the style of some runtime configurations to match the new parameters.
Adjusted the style of dialog and right sidebar.

close AF-2411 AF-2412 AF-2413 AF-2422
This commit is contained in:
JimmFly
2025-03-31 10:26:07 +00:00
parent 51dddc10be
commit eda680ccdc
19 changed files with 202 additions and 88 deletions

View File

@@ -33,12 +33,15 @@ export const ServerVersion = () => {
}
return (
<div
className="flex items-center justify-between pt-2 border-t px-2 text-xs"
className="inline-flex items-center justify-between pt-2 border-t px-2 text-xs flex-nowrap gap-1"
style={{
color: cssVarV2('text/tertiary'),
}}
>
ServerVersion<span>v{version}</span>
<span>ServerVersion</span>
<span className="overflow-hidden text-ellipsis" title={version}>
v{version}
</span>
</div>
);
};