Sha256: 9faf780c131a10091d55834e7af7d92df2419e468179cc76be95fa943440b634

Contents?: true

Size: 1.71 KB

Versions: 143

Compression:

Stored size: 1.71 KB

Contents

////
/// @group helpers
////

/// Grid width percentage
///
/// @param {String} $key - Name of grid width (e.g. two-thirds)
/// @return {Number} Percentage width
/// @throw if `$key` is not a valid grid width
/// @access public

@function govuk-grid-width($key) {
  @if map-has-key($govuk-grid-widths, $key) {
    @return map-get($govuk-grid-widths, $key);
  }

  @error "Unknown grid width `#{$key}`";
}

/// Generate grid column styles
///
/// Creates a grid column with standard gutter between the columns.
///
/// Grid widths are defined in the `$govuk-grid-widths` map.
///
/// By default the column width changes from 100% to specified width at the
/// 'tablet' breakpoint, but other breakpoints can be specified using the `$at`
/// parameter.
///
/// @param {String} $width [full] name of a grid width from $govuk-grid-widths
/// @param {String} $float [left] left | right
/// @param {String} $at [tablet] - mobile | tablet | desktop | any custom breakpoint
///
/// @example scss - Default
///   .govuk-grid-column-two-thirds {
///     @include govuk-grid-column(two-thirds)
///   }
///
/// @example scss - Customising the breakpoint where width percentage is applied
///   .govuk-grid-column-one-half-at-desktop {
///     @include govuk-grid-column(one-half, $at: desktop);
///   }
///
/// @example scss - Customising the float direction
///   .govuk-grid-column-one-half-right {
///     @include govuk-grid-column(two-thirds, $float: right);
///
/// @access public

@mixin govuk-grid-column($width: full, $float: left, $at: tablet) {
  box-sizing: border-box;
  @if $at != desktop {
    width: 100%;
  }
  padding: 0 $govuk-gutter-half;
  @include govuk-media-query($from: $at) {
    width: govuk-grid-width($width);
    float: $float;
  }
}

Version data entries

143 entries across 143 versions & 3 rubygems

Version Path
govuk_tech_docs-2.2.2 node_modules/govuk-frontend/govuk/helpers/_grid.scss
govuk_tech_docs-2.2.1 node_modules/govuk-frontend/govuk/helpers/_grid.scss
govuk_tech_docs-2.2.0 node_modules/govuk-frontend/govuk/helpers/_grid.scss
govuk_tech_docs-2.1.1 node_modules/govuk-frontend/govuk/helpers/_grid.scss
govuk_tech_docs-2.1.0 node_modules/govuk-frontend/govuk/helpers/_grid.scss
govuk_tech_docs-2.0.13 node_modules/govuk-frontend/govuk/helpers/_grid.scss
dxw_govuk_frontend_rails-3.6.0 vendor/assets/stylesheets/helpers/_grid.scss
dxw_govuk_frontend_rails-3.5.0 vendor/assets/stylesheets/helpers/_grid.scss
govuk_publishing_components-21.54.0 node_modules/govuk-frontend/govuk/helpers/_grid.scss
govuk_publishing_components-21.53.0 node_modules/govuk-frontend/govuk/helpers/_grid.scss
govuk_publishing_components-21.52.1 node_modules/govuk-frontend/govuk/helpers/_grid.scss
govuk_publishing_components-21.52.0 node_modules/govuk-frontend/govuk/helpers/_grid.scss
govuk_publishing_components-21.51.0 node_modules/govuk-frontend/govuk/helpers/_grid.scss
govuk_publishing_components-21.50.1 node_modules/govuk-frontend/govuk/helpers/_grid.scss
govuk_publishing_components-21.50.0 node_modules/govuk-frontend/govuk/helpers/_grid.scss
govuk_publishing_components-21.49.0 node_modules/govuk-frontend/govuk/helpers/_grid.scss
govuk_publishing_components-21.48.0 node_modules/govuk-frontend/govuk/helpers/_grid.scss
govuk_publishing_components-21.47.0 node_modules/govuk-frontend/govuk/helpers/_grid.scss
govuk_publishing_components-21.46.0 node_modules/govuk-frontend/govuk/helpers/_grid.scss
govuk_publishing_components-21.45.0 node_modules/govuk-frontend/govuk/helpers/_grid.scss