mirror of https://github.com/lxndrblz/anatole.git

Alexander Bilz
20.02.2022 2c337c28e4f210f465c03743319359828227a25a
assets/scss/partials/components/_wrapper.scss
@@ -6,12 +6,19 @@
    flex-direction: row;
  }
  @include widescreen {
    justify-content: center;
  }
  &__main {
    width: 100%;
    @include desktop_and_print {
      width: $content-width;
    }
    @include widescreen {
      width: calc(#{$content-ratio} * 80%);
    }
  }
  &__sidebar {
@@ -20,5 +27,9 @@
    @include desktop_and_print {
      width: $sidebar-width;
    }
    @include widescreen {
      width: calc(#{$sidebar-ratio} * 80%);
    }
  }
}