style: add paragraph styling to <detail>

This commit is contained in:
Youwen Wu 2024-10-31 19:47:40 -07:00
parent 36b5610592
commit a8b1c8c040
Signed by: youwen5
GPG key ID: 865658ED1FE61EC3
4 changed files with 1198 additions and 1441 deletions

View file

@ -37,6 +37,8 @@
shell.buildInputs = [ shell.buildInputs = [
hakyll-site hakyll-site
hls hls
pkgs.nodePackages.pnpm
pkgs.nodePackages.nodejs
]; ];
shell.tools = { shell.tools = {
cabal = "latest"; cabal = "latest";
@ -60,7 +62,9 @@
website = pkgs.stdenv.mkDerivation { website = pkgs.stdenv.mkDerivation {
name = "website"; name = "website";
buildInputs = [ ]; buildInputs =
[
];
src = pkgs.nix-gitignore.gitignoreSourcePure [ src = pkgs.nix-gitignore.gitignoreSourcePure [
./.gitignore ./.gitignore
".git" ".git"

File diff suppressed because it is too large Load diff

View file

@ -92,7 +92,7 @@
@apply text-center; @apply text-center;
} }
details { details {
@apply cursor-pointer; @apply cursor-pointer leading-loose sm:leading-[2] my-4 overflow-x-auto sm:text-lg font-light;
} }
details summary { details summary {
@apply mb-1; @apply mb-1;

File diff suppressed because one or more lines are too long