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

File diff suppressed because it is too large Load diff

View file

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

File diff suppressed because one or more lines are too long