/**
 * Copyright IBM Corp. 2016, 2023
 *
 * 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/utilities/convert' as *;

//-----------------------------
// Overflow Menu (expressive)
//-----------------------------

/// Overflow Menu styles (expressive)
/// @access private
/// @group overflow-menu-expressive
@mixin overflow-menu-expressive {
  .#{$prefix}--overflow-menu {
    block-size: $spacing-08;
    inline-size: $spacing-08;

    &-options__option {
      block-size: $spacing-09;
    }

    &-options--open[data-floating-menu-direction='bottom']::after,
    &-options--open[data-floating-menu-direction='top']::after {
      inline-size: $spacing-08;
    }

    &__icon {
      block-size: to-rem(20px);
      inline-size: to-rem(20px);
    }
  }
}
