feat: link post support + style fixes + split post and link feeds
This commit is contained in:
parent
591269ae92
commit
21ab946b74
22 changed files with 113 additions and 99 deletions
28
tailwind.css
28
tailwind.css
|
@ -47,10 +47,6 @@ body, html {
|
|||
background: theme(colors.pink.500);
|
||||
}
|
||||
|
||||
.icon-inline svg {
|
||||
@apply inline;
|
||||
}
|
||||
|
||||
.active,
|
||||
.active svg {
|
||||
color: theme(colors.teal.700);
|
||||
|
@ -141,26 +137,6 @@ code[class*=language-], pre[class*=language-] {
|
|||
stroke-width: 1.4;
|
||||
}
|
||||
|
||||
.icon--20 > svg {
|
||||
@apply h-5;
|
||||
@apply w-5;
|
||||
}
|
||||
|
||||
.icon--24 > svg {
|
||||
@apply h-6;
|
||||
@apply w-6
|
||||
}
|
||||
|
||||
.icon--28 > svg {
|
||||
@apply h-7;
|
||||
@apply w-7;
|
||||
}
|
||||
|
||||
.icon--32 > svg {
|
||||
@apply h-8;
|
||||
@apply w-8;
|
||||
}
|
||||
|
||||
.icon--bold > svg {
|
||||
stroke-width: 2;
|
||||
}
|
||||
|
@ -179,6 +155,10 @@ code[class*=language-], pre[class*=language-] {
|
|||
@apply animate-spin;
|
||||
}
|
||||
|
||||
.icon--inline > svg {
|
||||
@apply inline;
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: dark) {
|
||||
body {
|
||||
--pagefind-ui-primary: theme(colors.purple.400);
|
||||
|
|
Reference in a new issue