Skip to content

Commit 23f4173

Browse files
committed
fix(poster): adds border-radius to image layers
1 parent 2315b82 commit 23f4173

File tree

5 files changed

+5
-7
lines changed

5 files changed

+5
-7
lines changed

.github/workflows/publish.yml

-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
2-
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
3-
41
name: ☁️ Publish - npm Publish and Github Release
52

63
on:

.github/workflows/release.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
2-
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
3-
41
name: 📦 Release - Tag, Release, Publish and Deploy
2+
run-name: 📦 Release - ${{ inputs.tag-name || github.sha || github.ref }}
53

64
concurrency:
75
group: ${{ github.workflow }}-${{ github.ref }}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"type": "module",
44
"version": "1.9.0",
55
"title": "Side Trakt (companion app for Trakt.tv)",
6-
"packageManager": "pnpm@9.1.0",
6+
"packageManager": "pnpm@9.4.0",
77
"description": "Side Trakt, a chrome extension for Trakt.tv",
88
"license": "MIT",
99
"author": "dvcol",

src/components/common/poster/PosterComponent.vue

+2
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@ onBeforeUnmount(() => {
122122
justify-content: center;
123123
width: var(--poster-width, 5.3125rem);
124124
height: var(--poster-height, 8rem);
125+
border-radius: var(--poster-radius, 8px);
125126
opacity: 1;
126127
will-change: opacity;
127128
@@ -145,6 +146,7 @@ onBeforeUnmount(() => {
145146
&.placeholder {
146147
position: absolute;
147148
background-color: #111;
149+
border-radius: var(--poster-radius, 8px);
148150
}
149151
150152
&:not(.placeholder) {

src/components/views/panel/PanelPoster.vue

+1
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ const key = computed(() => {
9797
position: relative;
9898
margin: 1.75rem 0;
9999
border: 1px solid var(--border-white);
100+
border-radius: var(--poster-radius, 8px);
100101
box-shadow: var(--image-box-shadow);
101102
}
102103
</style>

0 commit comments

Comments
 (0)