1
1
mirror of https://github.com/srid/ema.git synced 2024-11-25 20:12:20 +03:00

Use latest version of tailwind CDN

This commit is contained in:
Sridhar Ratnakumar 2021-06-17 17:37:49 -04:00
parent ea6650e8a5
commit deb531557d
2 changed files with 2 additions and 1 deletions

View File

@ -34,6 +34,7 @@
- Helpers.Tailwind
- add overflow-y-scroll to body
- Add twind shim *before* application's head
- CDN: Use latest version always.
- TODO(doc) Helpers.Markdown (to be moved to Hackage eventually)
- add helpers to parse markdown; `parseMarkdownWithFrontMatter` and `parseMarkdown`
- TODO(doc) Add `Ema.Helper.PathTree`

View File

@ -58,7 +58,7 @@ layoutWith lang encoding tshim appHead appBody = RU.renderHtml $ do
twindShimCdn :: H.Html
twindShimCdn =
H.link
! A.href "https://unpkg.com/tailwindcss@2.1.2/dist/tailwind.min.css"
! A.href "https://unpkg.com/tailwindcss@latest/dist/tailwind.min.css"
! A.rel "stylesheet"
! A.type_ "text/css"