style(scss): add border color for preview box of dark mode

This commit is contained in:
Anda Toshiki 2023-05-24 00:07:45 +08:00
parent 4eab417154
commit 676e9d9676

View File

@ -299,7 +299,7 @@ html.dark {
.link-preview-widget { .link-preview-widget {
display: table; display: table;
width: 100%; width: 100%;
border: 2px solid rgba(55, 53, 47, 0.16); border: 2px solid rgba(200, 202, 208, 0.16);
border-radius: 5px; border-radius: 5px;
} }
@ -366,7 +366,7 @@ html.dark {
height: 150px; height: 150px;
padding: 0; padding: 0;
vertical-align: middle; vertical-align: middle;
border-left: 1px rgba(55, 53, 47, 0.16) #f2f2f2; border-left: 1px rgba(200, 202, 208, 0.16) #f2f2f2;
border-radius: 5px; border-radius: 5px;
background-repeat: no-repeat; background-repeat: no-repeat;
background-position: 50%; background-position: 50%;
@ -377,4 +377,4 @@ html.dark {
} }
} }
// link preview markdown-it plugin dark mode style ends // link preview markdown-it plugin dark mode style ends