/*!*
 * @package   ats
 * @copyright Copyright (c)2011-2026 Nicholas K. Dionysopoulos / Akeeba Ltd
 * @license   GNU General Public License version 3, or later
 */

@use '../variables' as *;
@use 'sass:color';

@mixin ats_pseudotoolbar
{
  .ats-pseudotoolbar {
    border: thin solid $light-grey;
    border-radius: .5em;
    padding: .5em;
    margin: 1em 0;
    background-color: color.adjust($light-grey, $lightness: 10%);
    display: flex;
    justify-content: space-between;
  }
}
