My aggregated monorepo of OCaml code, automaintained
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(scrollycode): add mobile container padding to prevent text clipping

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

+3
+3
odoc-scrollycode-extension/src/scrollycode_extension.ml
··· 724 724 725 725 /* Mobile responsive */ 726 726 @media (max-width: 700px) { 727 + .sc-container.sc-warm { padding: 0 1rem; } 727 728 .sc-container.sc-warm .sc-desktop { display: none !important; } 728 729 .sc-container.sc-warm .sc-mobile { display: block !important; } 729 730 .sc-container.sc-warm .sc-progress { display: none; } ··· 1034 1035 1035 1036 /* Mobile responsive */ 1036 1037 @media (max-width: 700px) { 1038 + .sc-container.sc-dark { padding: 0 1rem; } 1037 1039 .sc-container.sc-dark .sc-desktop { display: none !important; } 1038 1040 .sc-container.sc-dark .sc-mobile { display: block !important; } 1039 1041 .sc-container.sc-dark .sc-progress { display: none; } ··· 1354 1356 1355 1357 /* Mobile responsive */ 1356 1358 @media (max-width: 700px) { 1359 + .sc-container.sc-notebook { padding: 0 1rem; } 1357 1360 .sc-container.sc-notebook .sc-desktop { display: none !important; } 1358 1361 .sc-container.sc-notebook .sc-mobile { display: block !important; } 1359 1362 .sc-container.sc-notebook .sc-progress { display: none; }