Skip to content

Commit

Permalink
fix: fix bex collect page style (#160)
Browse files Browse the repository at this point in the history
  • Loading branch information
qq815776412 authored Sep 20, 2024
2 parents 0816b56 + 646d72d commit e54f141
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
.collection-wrapper-operation {
padding: 6px;
border-radius: 8px;
background: #fff;
background: $background-2;
&:hover {
background: rgba(92, 85, 81, 0.05);
background: $background-4;
}
}
</style>
6 changes: 1 addition & 5 deletions packages/app/src/pages/Mobile/collect/DownloadContent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<q-img :src="entryImage(item.file)" class="image-avatar" />
</template>
<template v-slot:side>
<CollectionItemStatus class="status-white-bg">
<CollectionItemStatus>
<template v-slot:status>
<q-icon
v-if="
Expand Down Expand Up @@ -118,9 +118,5 @@ const entryImage = (item: FileInfo) => {
height: 44px;
border-radius: 8px;
}
.status-white-bg {
background: $background-1;
}
}
</style>
5 changes: 1 addition & 4 deletions packages/app/src/pages/Mobile/collect/PageContent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
</q-img>
</template>
<template v-slot:side>
<collection-item-status class="status-white-bg">
<collection-item-status>
<template v-slot:status>
<q-icon
v-if="item.status === RssStatus.added"
Expand Down Expand Up @@ -89,8 +89,5 @@ const onSaveEntry = async (item: RssInfo) => {
height: 44px;
border-radius: 8px;
}
.status-white-bg {
background: #fff;
}
}
</style>
5 changes: 1 addition & 4 deletions packages/app/src/pages/Mobile/collect/RssContent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
</q-img>
</template>
<template v-slot:side>
<collection-item-status class="status-white-bg">
<collection-item-status>
<template v-slot:status>
<q-icon
v-if="item.status === RssStatus.none"
Expand Down Expand Up @@ -122,8 +122,5 @@ const onRemoveFeed = async (item: RssInfo) => {
height: 44px;
border-radius: 8px;
}
.status-white-bg {
background: #fff;
}
}
</style>

0 comments on commit e54f141

Please sign in to comment.