File tree Expand file tree Collapse file tree 4 files changed +20
-3
lines changed
playground/tags/playground/tags/editor/tags/tabs Expand file tree Collapse file tree 4 files changed +20
-3
lines changed Original file line number Diff line number Diff line change 7373::selection {
7474 color : var (--section-color-dim-alt , var (--color-red-dim-alt ));
7575 background-color : var (--section-color-alt , var (--color-red-alt ));
76+ -webkit-text-fill-color : var (
77+ --section-color-dim-alt ,
78+ var (--color-red-dim-alt )
79+ );
7680}
7781
7882body {
Original file line number Diff line number Diff line change @@ -89,8 +89,8 @@ div class=styles.tabs
8989
9090 if (filename ) {
9191 if (! filename .includes (" ." )) filename += " .marko" ;
92+ selected = tabs .length ;
9293 tabs = [... tabs , { path: filename , content: " " }];
93- selected = tabs .length - 1 ;
9494 }
9595 }
9696 ,class = styles .add
Original file line number Diff line number Diff line change @@ -23,7 +23,17 @@ $pageLinksHeight: 3.5rem;
2323}
2424
2525@mixin supported {
26+ // On large screens, exclude Safari because of a rendering bug with scaleY
27+ @supports (animation-timeline : scroll ()) and (not (-webkit-hyphens : none )) {
28+ @media (width >= 48rem ) and (height >= 38rem ) {
29+ @content ;
30+ }
31+ }
32+
33+ // On small screens, include Safari
2634 @supports (animation-timeline : scroll ()) {
27- @content ;
35+ @media (width < 48rem ) or (height < 38rem ) {
36+ @content ;
37+ }
2838 }
2939}
Original file line number Diff line number Diff line change @@ -14,7 +14,10 @@ export function cdnPlugin(): Plugin {
1414 }
1515
1616 if ( / ^ [ ^ \0 . \/ ] / . test ( id ) ) {
17- return { id : `https://esm.sh/${ id } ` , external : true } ;
17+ return {
18+ id : `https://esm.sh/${ id } ?bundle` ,
19+ external : true ,
20+ } ;
1821 }
1922 } ,
2023 } ;
You can’t perform that action at this time.
0 commit comments