@import "header";
@import "content";
@import "footer";
@import "sidebar";
@import "center";

.yu-layout{
  font-family: $font-family;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.yu-layout-inline{
  display: flex;
  width: 100%;
  height: 100%;
  .yu-sidebar{
    flex-shrink: 0;
  }
}

.yu-layout-block{
  box-sizing: border-box;
  @extend .yu-layout;
  &.padding{
    padding: 30px 30px 0 30px;
  }
}