Skip to content

Commit

Permalink
fix: use correct color on overlay
Browse files Browse the repository at this point in the history
  • Loading branch information
pirhoo committed Jul 16, 2024
1 parent 84da142 commit 5c89ca1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/components/Document/DocumentThumbnail.vue
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ export default {
&__overlay {
position: absolute;
z-index: $zindex-overlay;
left: 0;
left: 1px;
top: 0;
right: 0;
bottom: 0;
Expand All @@ -342,5 +342,9 @@ export default {
color: var(--bs-tertiary);
display: none;
}
&__placeholder + &__overlay {
background: var(--bs-light-bg-subtle);
}
}
</style>

0 comments on commit 5c89ca1

Please sign in to comment.