/**
 * 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 *;

//-----------------------------
// Inline Notifications  (expressive)
//-----------------------------
/// Inline Notifications styles (expressive)
/// @access private
/// @group inline-notifications-expressive
@mixin inline-notifications-expressive {
  .#{$prefix}--inline-notification {
    .#{$prefix}--inline-notification__details {
      margin-inline-start: 0.85rem;

      .#{$prefix}--inline-notification__icon {
        margin-inline-end: 0.875rem;
      }
    }
    .#{$prefix}--inline-notification__text-wrapper {
      padding: 0.8rem 0;
    }
    .#{$prefix}--inline-notification__action-button.#{$prefix}--btn--ghost {
      padding: calc(0.375rem - 3px) $spacing-05;
      margin: $spacing-02 0;
    }
  }
}
