//
// Copyright IBM Corp. 2016, 2018
//
// This source code is licensed under the Apache-2.0 license found in the
// LICENSE file in the root directory of this source tree.
//

@import '../../globals/scss/typography';

/// Code snippet base styles
/// @access private
/// @group code-snippet
@mixin bx--snippet {
  @include type-style('code-01');
  background: $snippet-background-color;
  border: 1px solid $snippet-border-color;
  position: relative;
  max-width: rem(600px);
  width: 100%;
}
