Newer
Older
eShopOnWeb-VerticalFeatureSlices / src / Web / wwwroot / css / app.component.scss
@Derek Comartin Derek Comartin on 27 Jul 2021 662 bytes Init
@import './_variables.scss';

.esh-app {
    &-footer {
        $margin: 2.5rem;
        $padding: 2.5rem;

        background-color: $color-background-darker;
        border-top: $border-light solid $color-foreground-bright;
        margin-top: $margin;
        padding-bottom: $padding;
        padding-top: $padding;
        width: 100%;
        bottom: 0;
        $height: 50px;

        &-brand {
            height: $height;
            width: 230px;
        }
    }

    &-header {
        margin: 15px;
    }

    &-wrapper {
        display: flex;
        min-height: 100vh;
        flex-direction: column;
        justify-content: space-between
    }
}