Skip to content
Snippets Groups Projects
_site-container.scss 1.29 KiB
.uw-site-container {
  display: grid;
  grid-template-columns: 100%;

  .uw-header {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }

  .uw-highlighted {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    width:100%;
  }
  .uw-main {
    background-color: $uw-white;
    grid-column: 1 / 2;
    grid-row: 3 / 4;
    min-height: 60vh;
  }
  .uw-footer {
    grid-column: 1 / 2;
    grid-row: 4 / 5;
  }
  // constraining sections of the theme with the site-container
  .uw-highlighted,
  .block-page-title-block,
  .block-local-tasks-block,
  .layout-builder-form,
  .node-form,
  .contextual-region,
  form{
    @include uw-contained-width;
    padding: rem(gesso-spacing(sm));
    @include xl {
      padding:0;
    }
  }
  .block-local-tasks-block{
    @include small {
      min-height:auto;
    }
  }
  .messages,
  .message{
    @include uw-contained-width;
  }
  .node-layout-builder-form .form-actions {
    background: #ccc;
    bottom: 0;
    left: 0;
    margin: 0;
    padding: 1rem;
    position: fixed;
    text-align: center;
    width: 100%;
    z-index: 501;

  }
  .node-layout-builder-form form-actions div {
    display: inline;
  }
  .node-layout-builder-form form-actions .form-item-toggle-content-preview {
    padding: 1rem;
  }
}