more shadow fixes
This commit is contained in:
parent
1702aa6a6a
commit
af9cab7aa9
|
@ -88,7 +88,7 @@ const props = defineProps<{
|
||||||
padding: 16px;
|
padding: 16px;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
text-shadow: 0 0 8px #000;
|
text-shadow: 0 0 8px var(--shadow);
|
||||||
background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
|
background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
|
||||||
|
|
||||||
&:before {
|
&:before {
|
||||||
|
|
|
@ -307,7 +307,7 @@ function syncSlide(index) {
|
||||||
display: block;
|
display: block;
|
||||||
padding: 16px;
|
padding: 16px;
|
||||||
color: #e0def4;
|
color: #e0def4;
|
||||||
text-shadow: 0 0 8px #000;
|
text-shadow: 0 0 8px var(--shadow);
|
||||||
background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
|
background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -219,7 +219,7 @@ definePageMetadata(computed(() => page ? {
|
||||||
> h1 {
|
> h1 {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
color: white;
|
color: white;
|
||||||
text-shadow: 0 0 8px #000;
|
text-shadow: 0 0 8px var(--shadow);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -239,7 +239,7 @@ definePageMetadata(computed(() => page ? {
|
||||||
height: 31px;
|
height: 31px;
|
||||||
width: 31px;
|
width: 31px;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
text-shadow: 0 0 8px #000;
|
text-shadow: 0 0 8px var(--shadow);
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -275,7 +275,7 @@ onUnmounted(() => {
|
||||||
height: 31px;
|
height: 31px;
|
||||||
width: 31px;
|
width: 31px;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
text-shadow: 0 0 8px #000;
|
text-shadow: 0 0 8px var(--shadow);
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -386,7 +386,7 @@ onUnmounted(() => {
|
||||||
line-height: 32px;
|
line-height: 32px;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
font-size: 1.8em;
|
font-size: 1.8em;
|
||||||
text-shadow: 0 0 8px #000;
|
text-shadow: 0 0 8px var(--shadow);
|
||||||
}
|
}
|
||||||
|
|
||||||
> .bottom {
|
> .bottom {
|
||||||
|
@ -419,7 +419,7 @@ onUnmounted(() => {
|
||||||
line-height: 32px;
|
line-height: 32px;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
font-size: 1.8em;
|
font-size: 1.8em;
|
||||||
text-shadow: 0 0 8px #000;
|
text-shadow: 0 0 8px var(--shadow);
|
||||||
}
|
}
|
||||||
|
|
||||||
> .followed {
|
> .followed {
|
||||||
|
|
Loading…
Reference in New Issue