Fix background css for clients iOS < 13.1

This commit is contained in:
schlagmichdoch 2025-02-13 11:39:10 +01:00
parent 940da7948c
commit f7fe303fa7

View file

@ -696,7 +696,6 @@ button::-moz-focus-inner {
/* Info Animation */
#about {
color: white;
z-index: 32;
@ -752,9 +751,11 @@ button::-moz-focus-inner {
height: var(--size);
z-index: -1;
background: var(--primary-color);
background-image: radial-gradient(circle at calc(50% - 36px), var(--accent-color) 0%, color-mix(in srgb, var(--accent-color) 40%, black) 80%);
background-image: radial-gradient(circle at calc(50% - 36px), var(--primary-color) 0%, black 80%);
--crop-size: 0px;
clip-path: circle(var(--crop-size));
/* For clients < iOS 13.1 */
-webkit-clip-path: circle(var(--crop-size));
}
html:not([dir="rtl"]) #about x-background {