Add box shadow for columns in dark mode

This commit is contained in:
phil 2023-04-25 21:50:09 +02:00
parent 7cb422cc43
commit 57a5acc812

View file

@ -87,13 +87,13 @@
&__content { &__content {
flex: 1 1; flex: 1 1;
min-width: $body-min-width * 0.66; min-width: $body-min-width * 0.66;
box-shadow: 0 15px 60px $shadow-2; box-shadow: 0 15px 60px var(--accent-color);
padding: $padding-32; padding: $padding-32;
border-radius: 12px; border-radius: 12px;
} }
&__content:hover { &__content:hover {
box-shadow: 0 15px 60px $shadow-3; box-shadow: 0 15px 60px var(--accent-color-light);
} }
.gdoc-post__anchor { .gdoc-post__anchor {