mirror of
https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web.git
synced 2025-10-09 11:36:38 +08:00
feat: 样式调整
This commit is contained in:
parent
554757db6c
commit
79184e81d7
@ -19,7 +19,29 @@
|
|||||||
height: var(--window-height);
|
height: var(--window-height);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.not-wx-work {
|
||||||
|
width: 95%;
|
||||||
|
text-align: left;
|
||||||
|
margin: 0 auto;
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
|
||||||
|
.button-2 {
|
||||||
|
cursor: pointer;
|
||||||
|
position: relative;
|
||||||
|
color: lightsalmon;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.not-allow {
|
||||||
|
width: 95%;
|
||||||
|
text-align: left;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
.button {
|
.button {
|
||||||
|
margin: 0 auto;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
position: relative;
|
position: relative;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
|
@ -694,12 +694,12 @@ export function Home() {
|
|||||||
<h2>服务出了点问题~</h2>
|
<h2>服务出了点问题~</h2>
|
||||||
) : // 不在企业微信
|
) : // 不在企业微信
|
||||||
!isWorkWechat() ? (
|
!isWorkWechat() ? (
|
||||||
<h2 className="not-wx-work">请在企业微信里使用ChatGPT,路径:企业微信--工作台--ChatGPT</h2>
|
<h2 className={styles['not-wx-work']}>请在企业微信里使用ChatGPT,路径:企业微信--工作台--ChatGPT</h2>
|
||||||
) : // 不在白名单
|
) : // 不在白名单
|
||||||
!isAllow ? (
|
!isAllow ? (
|
||||||
<h2 className="not-allow">
|
<h2 className={styles['not-allow']}>
|
||||||
<span className="text">抱歉,您还没有申请使用权限。请无线连接到ZKT-Office或VPN连接正常</span>
|
<span className="text">抱歉,您还没有申请使用权限。请无线连接到ZKT-Office或VPN连接正常</span>
|
||||||
<span onClick={goApply} className={styles["button"]}>
|
<span onClick={goApply} className={styles["button-2"]}>
|
||||||
去申请
|
去申请
|
||||||
</span>
|
</span>
|
||||||
</h2>
|
</h2>
|
||||||
|
Loading…
Reference in New Issue
Block a user