mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-17 12:55:12 -05:00
feat: started working on responsiveness
This commit is contained in:
parent
e6b3e90698
commit
0339496f42
37 changed files with 790 additions and 249 deletions
21
frontend/src/Config/Response.elm
Normal file
21
frontend/src/Config/Response.elm
Normal file
|
@ -0,0 +1,21 @@
|
|||
module Config.Response exposing (..)
|
||||
|
||||
import Config.Colour exposing (..)
|
||||
import Element as E exposing (..)
|
||||
import Element.Background as B
|
||||
import Element.Border as D exposing (..)
|
||||
import Element.Font as F
|
||||
import Html exposing (col)
|
||||
import Html.Attributes as H exposing (style)
|
||||
|
||||
|
||||
pageListDesktop : List (Attribute msg)
|
||||
pageListDesktop =
|
||||
[ spacing 30
|
||||
, centerX
|
||||
, alignTop
|
||||
, height fill
|
||||
, paddingEach { top = 30, bottom = 30, left = 30, right = 30 }
|
||||
, E.width (fill |> minimum 100)
|
||||
, E.width (fill |> maximum 875)
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue