forked from Gitlink/forgeplus-react
Merge pull request '修改glcc二维码' (#400) from tongChong/forgeplus-react:feature_style into gitlink_server
This commit is contained in:
commit
202ffd1a62
|
@ -1,4 +1,4 @@
|
||||||
.openmmlab_tab {
|
.ant-tabs.openmmlab_tab {
|
||||||
background-color: #2c374e;
|
background-color: #2c374e;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
.ant-tabs-bar {
|
.ant-tabs-bar {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import React, { memo, useEffect, useState } from 'react';
|
import React, { memo, useEffect, useState } from 'react';
|
||||||
import { Button, Modal } from 'antd';
|
import { Button, Modal } from 'antd';
|
||||||
|
import qqChat from '../../glcc/img/qqChat.png';
|
||||||
import bg from './glcc.png';
|
import bg from './glcc.png';
|
||||||
import './index.scss';
|
import './index.scss';
|
||||||
|
|
||||||
|
@ -32,12 +32,13 @@ function QzModal() {
|
||||||
onCancel={() => { setVisible(false) }}
|
onCancel={() => { setVisible(false) }}
|
||||||
footer={null}
|
footer={null}
|
||||||
className='qzModal'
|
className='qzModal'
|
||||||
width='728px'
|
width='900px'
|
||||||
maskClosable={false}
|
maskClosable={false}
|
||||||
centered
|
centered
|
||||||
>
|
>
|
||||||
{/* <img src={window.location.href.indexOf('osredm.jk')>-1?bg_local: bg} /> */}
|
{/* <img src={window.location.href.indexOf('osredm.jk')>-1?bg_local: bg} /> */}
|
||||||
<img src={bg} />
|
<img className="big_picture" src={bg} />
|
||||||
|
<img className="qqchat" src={qqChat} />
|
||||||
<a target="_blank" href="/glcc" className="qz-btn"></a>
|
<a target="_blank" href="/glcc" className="qz-btn"></a>
|
||||||
</Modal>
|
</Modal>
|
||||||
)
|
)
|
||||||
|
|
|
@ -4,10 +4,17 @@
|
||||||
padding: 0;
|
padding: 0;
|
||||||
background: rgb(48,118,207);
|
background: rgb(48,118,207);
|
||||||
|
|
||||||
img {
|
.big_picture {
|
||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.qqchat{
|
||||||
|
width: 98px;
|
||||||
|
position: absolute;
|
||||||
|
bottom: 38px;
|
||||||
|
left: 44px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.ant-modal-header {
|
.ant-modal-header {
|
||||||
|
|
Loading…
Reference in New Issue