Skip to content

Commit

Permalink
fix: Limit upload picker custom css to header
Browse files Browse the repository at this point in the history
Signed-off-by: Louis Chemineau <[email protected]>
  • Loading branch information
artonge committed Jul 3, 2024
1 parent ca99130 commit b044fed
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 25 deletions.
24 changes: 12 additions & 12 deletions src/views/AlbumContent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -414,19 +414,19 @@ export default {
&--uploading {
margin-bottom: 30px;
}
}
:deep(.upload-picker) {
.upload-picker__progress {
position: absolute;
bottom: -30px;
left: 64px;
margin: 0;
}
.upload-picker__cancel {
position: absolute;
bottom: -24px;
right: 50px;
:deep(.upload-picker) {
.upload-picker__progress {
position: absolute;
bottom: -30px;
left: 64px;
margin: 0;
}
.upload-picker__cancel {
position: absolute;
bottom: -24px;
right: 50px;
}
}
}
</style>
25 changes: 12 additions & 13 deletions src/views/Folders.vue
Original file line number Diff line number Diff line change
Expand Up @@ -303,21 +303,20 @@ export default {
&--uploading {
margin-bottom: 30px;
}
}
:deep(.upload-picker) {
.upload-picker__progress {
position: absolute;
bottom: -30px;
left: 64px;
margin: 0;
}
:deep(.upload-picker) {
.upload-picker__progress {
position: absolute;
bottom: -30px;
left: 64px;
margin: 0;
}
.upload-picker__cancel {
position: absolute;
bottom: -24px;
right: 50px;
.upload-picker__cancel {
position: absolute;
bottom: -24px;
right: 50px;
}
}
}
</style>

0 comments on commit b044fed

Please sign in to comment.