|
@@ -79,7 +79,7 @@ const BasicLayout: React.FC<BasicLayoutProps> = () => {
|
|
|
className="h-[100vh] xl:text-[48px] lg:text-[40px] md:text-[30px] sm:text-[20px] xs:text-[15px]"
|
|
|
>
|
|
|
{/* 第一行:品牌和状态区域 */}
|
|
|
- <Row className="xl:h-[10vh] text-[100%]">
|
|
|
+ <Row className="xl:h-[9vh] text-[100%]">
|
|
|
{/* 品牌区域 */}
|
|
|
<Col xl={4} lg={4} md={5} sm={0} xs={0} className="h-full">
|
|
|
<Image src={logo} alt="Logo" height={'100%'} />
|
|
@@ -114,9 +114,9 @@ const BasicLayout: React.FC<BasicLayoutProps> = () => {
|
|
|
style={{
|
|
|
flex: 1,
|
|
|
display: 'flex',
|
|
|
- height: '100%',
|
|
|
border: '1px solid red',
|
|
|
}}
|
|
|
+ className="xxl:h-[90vh] xl:h-[90vh] lg:h-[90vh] md:h-[90vh] sm:h-[90vh] xs:h-[90vh]"
|
|
|
>
|
|
|
{/* 导航区域 */}
|
|
|
<Col xl={4} lg={4} md={0} sm={0} xs={0} style={{ flex: 1 }}>
|
|
@@ -130,7 +130,7 @@ const BasicLayout: React.FC<BasicLayoutProps> = () => {
|
|
|
md={24}
|
|
|
sm={24}
|
|
|
style={{ flex: 1, border: '1px solid blue' }}
|
|
|
- className="xxl:h-[90vh] xl:h-[90vh] lg:h-[90vh] md:h-[90vh] sm:h-[90vh] xs:h-[90vh]"
|
|
|
+ className="h-full"
|
|
|
>
|
|
|
{/* {children} */}
|
|
|
{contentMap[currentKey]}
|