Sha256: 449b6c1d980900153f3b5bf1b63ea957e9d04c6cd568278f19d205271e34ea1e

Contents?: true

Size: 726 Bytes

Versions: 1

Compression:

Stored size: 726 Bytes

Contents

// A collection of Sass functions and mixins used by Codelation
// https://codelation.com

// Used to set the max-width with the outer-container mixin
$max-width: 1024px !default;

$default-ui-color: #0366d6 !default;


// Used for has-cards, has-columns, and has-grid mixins. When the
// viewport reaches the mobile-breakpoint, the columns will be stacked.
$mobile-breakpoint: 767px !default;

@import "_base_resources/bourbon/bourbon";
@import "_base_resources/functions/**/*";
@import "_base_resources/mixins/**/*";
@import "_base_resources/normalize";

// Border Box by default for all elements
html { // http://bit.ly/1qk2tVR
  box-sizing: border-box;
}

* {
  &,
  &::after,
  &::before {
    box-sizing: inherit;
  }
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
codelation_ui-1.0.57 app/assets/stylesheets/codelation_ui/base.scss