Skip to content

Commit

Permalink
Fix video captions in dark theme (#331)
Browse files Browse the repository at this point in the history
* Fix video captions in dark theme

* Update tests snapshots
  • Loading branch information
ivansedov authored Oct 7, 2024
1 parent 8755274 commit b8df4cd
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/components/VNotionRenderer/VNotionRenderer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -290,6 +290,8 @@
border-top-width: 1px;
border-bottom-width: 0;
border-color: rgba(55, 53, 47, 0.09);
@apply dark:border-darkmode-border;
}
.notion-link {
color: inherit;
Expand Down Expand Up @@ -333,11 +335,14 @@
height: 30px;
margin: 1px 0px;
transition: background 120ms ease-in 0s;
@apply dark:text-darkmode-white;
}
.notion-page-link:hover {
background: rgba(55, 53, 47, 0.08);
}
.dark .notion-page-link:hover {
@apply bg-darkmode-layer3;
}
.notion-page-icon {
line-height: 1.4;
margin-right: 4px;
Expand Down Expand Up @@ -366,6 +371,8 @@
line-height: 1.3;
border-bottom: 1px solid rgba(55, 53, 47, 0.16);
margin: 1px 0px;
@apply dark:border-b-darkmode-border;
}
.notion-inline-code {
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit b8df4cd

Please sign in to comment.