fix
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
<template>
|
||||
<div class="works_page" :class="{active:isScroll,'otherUsersActive':otherUsers}">
|
||||
<div class="works_page" :class="{active:isScroll,'otherUsersActive':otherUsers,'positionLogin':position=='login'}">
|
||||
<!-- <div class="modal_title_text">
|
||||
<div>Works</div>
|
||||
</div> -->
|
||||
<div class="modal_title_text modal_search" v-if="!otherUsers">
|
||||
<div class="modal_title_text modal_search" v-if="!otherUsers && position!='login'">
|
||||
<div v-show="isScroll" v-for="item in worksType" :key="item" class="gallery_btn white" @click="setWorksSelect(item)" :class="{active:item.value == worksSelect}">
|
||||
{{ item.name }}
|
||||
</div>
|
||||
@@ -58,6 +58,10 @@ export default defineComponent({
|
||||
type:Boolean,
|
||||
default:false,
|
||||
},
|
||||
position:{
|
||||
type:String,
|
||||
default:'',
|
||||
},
|
||||
userId:{
|
||||
type:String,
|
||||
default:'-1',
|
||||
@@ -283,7 +287,13 @@ export default defineComponent({
|
||||
// min-width: 1440px;
|
||||
position: relative;
|
||||
padding-top: 5rem;
|
||||
|
||||
&.positionLogin{
|
||||
padding: 0;
|
||||
border-radius: 0;
|
||||
.page_content{
|
||||
border-radius: 0;
|
||||
}
|
||||
}
|
||||
.modal_title_text{
|
||||
display: flex;
|
||||
margin: 0;
|
||||
|
||||
Reference in New Issue
Block a user