diff --git a/AGENTS.md b/AGENTS.md index 461b6b2..e68798f 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -111,3 +111,5 @@ be rejected by the compiler. comment explaining why. - **Prefer** `case` over `<-` pattern binds in `do` notation when the pattern could conceivably fail at runtime. +- **Always** format code and fix all hlint warnings before committing + and pushing. diff --git a/src/Roux/Html.hs b/src/Roux/Html.hs index 91d3dcc..6c20bb6 100644 --- a/src/Roux/Html.hs +++ b/src/Roux/Html.hs @@ -923,7 +923,6 @@ recipePageStyles :: Text recipePageStyles = T.unlines [ ".rp-page { max-width: 980px; margin: 0 auto; }" - , ".rp-course { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--roux-accent); opacity: 0.65; margin: 0 0 4px; }" , ".rp-title { font-size: 38px; line-height: 1.05; font-family: \"Fraunces\", serif; font-weight: 500; margin: 0; }" , ".rp-title.roux-recipe-title:hover::after { content: '\\270E'; font-size: 0.7rem; opacity: 0.3; margin-left: 0.5rem; vertical-align: super; }" @@ -1360,7 +1359,6 @@ landingStyles :: Text landingStyles = T.unlines [ ".lnd-page { max-width: 980px; margin: 0 auto; }" - , ".lnd-shuffle { background: rgba(184,92,56,0.08); border-radius: 12px; padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; gap: 24px; margin-bottom: 36px; }" , ".lnd-shuffle-meta { font-size: 12px; letter-spacing: 0.12em; color: #8A7560; text-transform: uppercase; margin-bottom: 4px; }" , ".lnd-shuffle h3 { font-family: \"Fraunces\", serif; font-size: 20px; font-weight: 500; margin: 0; }"