//
// Copyright (c) 2021 GrowStocks
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
//

@use '../../Core/Theme';

@use 'SCAppbarItem';

@mixin base($nav-contents: 4, $breakpoint: 'medium') {

    $_container-width: (42px * $nav-contents) + (8px * $nav-contents);

    .sc-appbar {
        width: 100%;
        position: fixed;
        padding: 0.5rem 0;
        bottom: 0;
        left: 0;
        z-index: 100;

        @media (min-width: Theme.get-breakpoint($breakpoint)) {
            width: max-content;
            bottom: inherit;
            position: relative;
            padding: 0.3rem 0;
            right: 0;
            background-color: rgba(0 0 0 / 0%) !important;
            border-color: rgba(0 0 0 / 0%) !important;
            box-shadow: none !important;
            height: 100%;

            display: flex;
            justify-content: flex-end;
        }

        .sc-appbar__container {
            display: grid;
            grid-column: 1/-1;
            padding: 0.3rem 0;
            grid-template-columns: repeat($nav-contents, 1fr);
            justify-content: space-between;
            grid-gap: 0.5rem;
            text-align: center;
            height: max-content;

            @media (min-width: Theme.get-breakpoint($breakpoint)) {
                width: $_container-width;
                padding: 0;
                text-align: right;
            }

            @include SCAppbarItem.base($breakpoint);

        }

        @content;
    }
}
