Skip to content

Commit

Permalink
work on some css-4 features
Browse files Browse the repository at this point in the history
  • Loading branch information
KommuSoft committed May 7, 2024
1 parent e91c91c commit b6c0b4d
Show file tree
Hide file tree
Showing 6 changed files with 2,337 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/Css4/Selector.hs
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
-- |
-- Module : Css4.Selector
-- Description : Css 3 selectors in Haskell.
-- Maintainer : [email protected]
-- Stability : experimental
-- Portability : POSIX
--
-- A module to define css selectors by making use of a quasiquoter, and manipulating these css selectors.
module Css4.Selector
( module Css4.Selector.Core,
module Css4.Selector.QuasiQuoters,
module Css4.Selector.Utils,
)
where

import Css4.Selector.Core
import Css4.Selector.QuasiQuoters
import Css4.Selector.Utils
Loading

0 comments on commit b6c0b4d

Please sign in to comment.