blob: 5d97161df6a8de7a842b5cdd028efe9db176f5d3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
module Responsive exposing (..)
{-| Returns a string containing all of the Tailwind selectors we use to size
h2-sized elements across various devices. -}
h1 : String
h1 =
"text-6xl lg:text-4xl"
{-| Returns a string containing all of the Tailwind selectors we use to size
h2-sized elements across various devices. -}
h2 : String
h2 =
"text-5xl lg:text-3xl"
{-| Returns a string containing all of the Tailwind selectors we use to size
h3-sized elements across various devices. -}
h3 : String
h3 =
"text-4xl lg:text-2xl"
|