style: gguf model ux

This commit is contained in:
jialin
2025-10-17 10:15:55 +08:00
parent 37a3aa75cc
commit 005295ac97
19 changed files with 203 additions and 89 deletions
@@ -1,9 +1,9 @@
import React from 'react';
import '../style/title-wrapper.less';
const TitleWrapper: React.FC<any> = ({ children }) => {
const TitleWrapper: React.FC<any> = ({ children, style }) => {
return (
<h3 className="h3" style={{ height: 50 }}>
<h3 className="h3" style={{ height: 50, ...style }}>
{children}
</h3>
);