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

@use '@carbon/styles/scss/breakpoint' as *;
@use '@carbon/styles/scss/spacing' as *;
@use '@carbon/styles/scss/utilities/convert' as *;

// Sets the Width and Max-Width of the Card to 90% / 640px.
@mixin content-width {
  inline-size: 90%;
  max-inline-size: to-rem(640px);

  @include breakpoint(md) {
    inline-size: calc(100% - #{$spacing-07});
  }
}
