feat: Add support for MDX (#104)

This is an attempt to create our docs and blogs website
This commit is contained in:
Wanjohi
2024-08-31 21:37:45 +03:00
committed by GitHub
parent a90fe4ba7a
commit 22d43411b1
72 changed files with 1103 additions and 542 deletions

View File

@@ -13,18 +13,22 @@
*::selection {
background-color: theme("colors.primary.200");
color: theme("colors.primary.500");
}
*::-moz-selection {
background-color: theme("colors.primary.200");
color: theme("colors.primary.500");
}
html.dark *::selection {
background-color: theme("colors.primary.800");
color: theme("colors.primary.500");
}
html.dark *::-moz-selection {
background-color: theme("colors.primary.800");
color: theme("colors.primary.500");
}
html.dark,
@@ -36,10 +40,12 @@
@media (prefers-color-scheme: dark) {
*::selection {
background-color: theme("colors.primary.800");
color: theme("colors.primary.500");
}
*::-moz-selection {
background-color: theme("colors.primary.800");
color: theme("colors.primary.500");
}
html,
@@ -148,17 +154,6 @@
flex-direction: column;
}
/* .marquee-container ul li {
height: auto;
aspect-ratio: 4 / 3;
background: hsl(0 0% 90%);
border-radius: 6px;
font-size: clamp(2rem, 4vw + 1rem, 8rem);
display: grid;
place-items: center;
border: 1px solid hsl(0 0% 50%);
} */
[data-play-state=running] :is(ul, li) {
animation-play-state: running !important;
}