Skip to content

Commit

Permalink
(chore): several adjustments after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
YvetteNikolov committed Oct 11, 2023
1 parent e12d960 commit 63279fe
Show file tree
Hide file tree
Showing 16 changed files with 15 additions and 162 deletions.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,14 @@
*/
get_template_part('mijn-zaken/header');
?>

<main class="page-main" id="readspeaker">
<?php the_content(); ?>
</main>

<?php get_template_part('mijn-zaken/footer');
<main class="page-main page-main--mijn-zaken container" id="readspeaker">
<aside class="page-main__aside">
<?php get_template_part('partials/sidebar', 'mijn-zaken'); ?>
</aside>
<article class="page-main__content">
<?php the_content(); ?>
<?php get_template_part('partials/anchor-collapses'); ?>
</article>
</main>
<?php
get_template_part('mijn-zaken/footer');
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ document.addEventListener( 'DOMContentLoaded', () => {
window.addEventListener( 'resize', () => nlds_dh_ac.resizeEvents() );
window.addEventListener( 'orientationchange', () => nlds_dh_ac.resizeEvents() );

window.addEventListener( 'scroll', () => nlds_dh_ac.scrollEvents() );
window.addEventListener( 'scroll', () => nlds_dh_ac.scrollEvents() );
Original file line number Diff line number Diff line change
@@ -1,35 +1,17 @@
$layout: 'page-template-template-mijn-zaken';

.#{$layout} {
.page-template-template-mijn-zaken {
display: flex;
min-height: 100vh;
flex-direction: column;
background-color: $white;

.page-main {
flex: 1 0 auto;
overflow-x: hidden;

> * {
@include add-gutenberg-alignment-layouts;
}
}
background-color: var( --color-palette-white );

.footer {
margin-top: auto;
}

// Remove container padding to properly align everything
.container {
@include media-breakpoint-up( sm ) {
padding-right: 0;
padding-left: 0;
}
}
}

.page-main--mijn-zaken {
display: grid;
flex: 1 0 auto;
gap: var( --openpdd-mijn-zaken-gap, 2rem );
grid-template-areas: var(
--openpdd-mijn-zaken-template,
Expand Down

0 comments on commit 63279fe

Please sign in to comment.