From ff556fac6fec41cbc88722512d74dbe4a97f60b7 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Mon, 18 Mar 2024 08:13:02 -0700 Subject: [PATCH] fix: clip path incompatibility --- src/assets/styles/index.css | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/src/assets/styles/index.css b/src/assets/styles/index.css index 92e3278a..3eaf3609 100644 --- a/src/assets/styles/index.css +++ b/src/assets/styles/index.css @@ -282,32 +282,6 @@ footer nav:last-child span:not(.active) { padding: var(--sizing-xs); } -p .highlight-text:nth-child(even) { - -webkit-clip-path: polygon(2px 0, 99.5% 0,100% 93%, 0 100%); - clip-path: polygon(2px 0, 99.5% 0, 100% 93%, 0 100%); -} - -p .highlight-text:nth-child(odd) { - -webkit-clip-path: polygon(2px 0, 99.5% 0, 98.5% 95%, 0 100%); - clip-path: polygon(2px 0, 99.5% 0, 98.5% 95%, 0 100%); -} - -p .highlight-text:nth-of-type(3n+1) { - -webkit-clip-path: polygon(1px 2px, 99.5% 0, 100% 95%, 0 100%); - clip-path: polygon(1px 2px, 99.75% 0, 100% 95%, 0 100%); -} - -p .highlight-text:nth-of-type(3n+2) { - -webkit-clip-path: polygon(0 0, 100% 0, 100% 90%, 0 95%); - clip-path: polygon(0 0, 100% 0, 100% 90%, 0 95%); -} - -p .highlight-text:nth-of-type(3n) { - -webkit-clip-path: polygon(2px 1px, 100% 0, 100% 90%, 0 97%); - clip-path: polygon(2px 1px, 100% 0, 100% 90%, 0 97%); -} - - code { padding: var(--sizing-xs); color: var(--text-color-inverted);