github.com/pf-qiu/concourse/v6@v6.7.3-0.20201207032516-1f455d73275f/web/elm/src/Dashboard/PipelineGrid/Constants.elm (about)

     1  module Dashboard.PipelineGrid.Constants exposing
     2      ( cardHeight
     3      , cardWidth
     4      , headerHeight
     5      , padding
     6      , sectionHeaderHeight
     7      , sectionSpacerHeight
     8      )
     9  
    10  
    11  cardWidth : number
    12  cardWidth =
    13      272
    14  
    15  
    16  cardHeight : number
    17  cardHeight =
    18      268
    19  
    20  
    21  padding : number
    22  padding =
    23      25
    24  
    25  
    26  headerHeight : number
    27  headerHeight =
    28      60
    29  
    30  
    31  sectionHeaderHeight : number
    32  sectionHeaderHeight =
    33      70
    34  
    35  
    36  sectionSpacerHeight : number
    37  sectionSpacerHeight =
    38      30