Merge branch 'dev_vite' of ssh://18.167.251.121:10002/aidlab/aida_front into dev_vite
This commit is contained in:
BIN
src/assets/images/socialMediaLogo/biliBliIcon.png
Normal file
BIN
src/assets/images/socialMediaLogo/biliBliIcon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 313 KiB |
BIN
src/assets/images/socialMediaLogo/instagramIcon.png
Normal file
BIN
src/assets/images/socialMediaLogo/instagramIcon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 370 KiB |
BIN
src/assets/images/socialMediaLogo/tikTokIcon.png
Normal file
BIN
src/assets/images/socialMediaLogo/tikTokIcon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 68 KiB |
BIN
src/assets/images/socialMediaLogo/xiaoHongShuIcon.png
Normal file
BIN
src/assets/images/socialMediaLogo/xiaoHongShuIcon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 191 KiB |
BIN
src/assets/images/socialMediaLogo/youTubeIcon.png
Normal file
BIN
src/assets/images/socialMediaLogo/youTubeIcon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 7.4 KiB |
BIN
src/assets/images/socialMediaLogo/zhiHuIcon.png
Normal file
BIN
src/assets/images/socialMediaLogo/zhiHuIcon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 299 KiB |
@@ -168,6 +168,7 @@ li {
|
|||||||
}
|
}
|
||||||
.ant-modal-mask {
|
.ant-modal-mask {
|
||||||
background-color: #666666;
|
background-color: #666666;
|
||||||
|
opacity: 0.5;
|
||||||
}
|
}
|
||||||
.select_block {
|
.select_block {
|
||||||
height: 4rem;
|
height: 4rem;
|
||||||
|
|||||||
@@ -173,6 +173,7 @@ input:focus{
|
|||||||
}
|
}
|
||||||
.ant-modal-mask{
|
.ant-modal-mask{
|
||||||
background-color: #666666;
|
background-color: #666666;
|
||||||
|
opacity: .5;
|
||||||
}
|
}
|
||||||
.select_block{
|
.select_block{
|
||||||
height: 4rem;
|
height: 4rem;
|
||||||
|
|||||||
@@ -777,6 +777,9 @@ export default defineComponent({
|
|||||||
font-size: 1.7rem;
|
font-size: 1.7rem;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
background-color: #1b223c;
|
background-color: #1b223c;
|
||||||
|
&:hover {
|
||||||
|
background-color: #fff;
|
||||||
|
}
|
||||||
@media (max-width: 767px) {
|
@media (max-width: 767px) {
|
||||||
margin-top: 2.5rem;
|
margin-top: 2.5rem;
|
||||||
font-size: 1.25rem;
|
font-size: 1.25rem;
|
||||||
|
|||||||
@@ -393,6 +393,27 @@
|
|||||||
<span class="fi fi-rr-book-user"></span>
|
<span class="fi fi-rr-book-user"></span>
|
||||||
<span class="select_item_des">{{ $t('Header.Tutorial') }}</span>
|
<span class="select_item_des">{{ $t('Header.Tutorial') }}</span>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="select_item logo">
|
||||||
|
<a href="https://www.tiktok.com" target="_blank" >
|
||||||
|
<img src="@/assets/images/socialMediaLogo/tikTokIcon.png" alt="">
|
||||||
|
</a>
|
||||||
|
<a href="https://www.instagram.com" target="_blank" >
|
||||||
|
<img src="@/assets/images/socialMediaLogo/instagramIcon.png" alt="">
|
||||||
|
</a>
|
||||||
|
<a href="https://www.youtube.com" target="_blank" >
|
||||||
|
<img src="@/assets/images/socialMediaLogo/youTubeIcon.png" alt="">
|
||||||
|
</a>
|
||||||
|
<a href="https://www.xiaohongshu.com" target="_blank" >
|
||||||
|
<img src="@/assets/images/socialMediaLogo/xiaoHongShuIcon.png" alt="">
|
||||||
|
</a>
|
||||||
|
<a href="https://www.zhihu.com" target="_blank" >
|
||||||
|
<img src="@/assets/images/socialMediaLogo/zhiHuIcon.png" alt="">
|
||||||
|
</a>
|
||||||
|
<a href="https://www.bilibili.com/" target="_blank" >
|
||||||
|
<img src="@/assets/images/socialMediaLogo/biliBliIcon.png" alt="">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="select_item_long"></div>
|
<div class="select_item_long"></div>
|
||||||
<div class="select_item" @click="logout()">
|
<div class="select_item" @click="logout()">
|
||||||
<span class="icon iconfont icon-tuichu"></span>
|
<span class="icon iconfont icon-tuichu"></span>
|
||||||
@@ -2015,6 +2036,25 @@ export default defineComponent({
|
|||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.logo{
|
||||||
|
padding: 1rem 0.5rem;
|
||||||
|
gap: 1rem;
|
||||||
|
cursor: auto;
|
||||||
|
> a{
|
||||||
|
width: 2.5rem;
|
||||||
|
height: 2.5rem;
|
||||||
|
border-radius: .5rem;
|
||||||
|
overflow: hidden;
|
||||||
|
display: flex;
|
||||||
|
> img{
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
&:hover {
|
||||||
|
background: #fff;
|
||||||
|
}
|
||||||
|
}
|
||||||
.select_item_long {
|
.select_item_long {
|
||||||
border-bottom: 1px solid #eceaea;
|
border-bottom: 1px solid #eceaea;
|
||||||
margin: 2rem 0;
|
margin: 2rem 0;
|
||||||
|
|||||||
Reference in New Issue
Block a user