/*
 * Copyright (c) 2016-2025 Broadcom. All Rights Reserved.
 * The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.
 * This software is released under MIT license.
 * The full license information can be found in LICENSE in the root directory of this project.
 */
@use 'sass:map';
@use '../../../utils/variables/variables.layout';
@use '../mixins/breakpoint';

@each $breakpoint in map.keys(variables.$clr-grid-breakpoints) {
  @include breakpoint.clr-media-breakpoint-up($breakpoint) {
    .clr-float-#{$breakpoint}-left {
      float: left !important;
    }

    .clr-float-#{$breakpoint}-right {
      float: right !important;
    }

    .clr-float-#{$breakpoint}-none {
      float: none !important;
    }
  }
}
