mirror of
https://github.com/Aexiar/c.git
synced 2024-10-22 14:05:45 +02:00
20 lines
428 B
CSS
20 lines
428 B
CSS
.medium-zoom-overlay {
|
||
z-index: 20;
|
||
}
|
||
|
||
.medium-zoom-image {
|
||
z-index: 9999 !important;/* 给的值是21,但是实测盖不住,直接999 */
|
||
}
|
||
|
||
/* 禁止双指缩放 */
|
||
body, html {
|
||
touch-action: manipulation;
|
||
-webkit-touch-callout: none;
|
||
-ms-touch-action: manipulation;
|
||
}
|
||
|
||
:root {
|
||
--vp-home-hero-name-color: transparent;
|
||
--vp-home-hero-name-background: -webkit-linear-gradient(120deg, #bd34fe, #41d1ff);
|
||
}
|