Small adjustments due to spacing classes.

This commit is contained in:
mateuswetah 2020-08-17 19:19:46 -03:00
parent 2fb90bfbd7
commit 6a52232a5c
7 changed files with 8 additions and 7 deletions

View File

@ -26,7 +26,7 @@
margin-right: -4.1666667%;
margin-left: calc(-1 * ((100vw - 100%)/2));
margin-right: calc(-1 * ((100vw - 100%)/2));
margin-top: -0.75rem;
margin-top: -2.0rem;
position: relative;
width: 100%;
width: 100vw;

View File

@ -33,4 +33,5 @@ $theme-colors: (
$font-family-base: 'Roboto';
$headings-font-family: 'Roboto';
$headings-font-weight: 400;
@import "../vendor/bootstrap/scss/bootstrap";

View File

@ -245,7 +245,7 @@ nav {
h1 {
font-size: 1.5rem;
font-weight: normal;
margin: 0.3rem 0 0.36rem 0;
margin: 0.3rem 0 0.38rem 0;
}
.logo {
width: auto;

View File

@ -12,7 +12,7 @@ if ( ! function_exists( 'tainacan_enqueues' ) ) {
* Bootstrap 4.1.3
*/
//Style
wp_register_style( 'bootstrap4CSS', get_template_directory_uri() . '/assets/vendor/bootstrap/scss/bootstrap.min.css' );
wp_register_style( 'bootstrap4CSS', get_template_directory_uri() . '/assets/vendor/bootstrap/scss/bootstrap.min.css', [], TAINACAN_INTERFACE_VERSION );
wp_enqueue_style( 'bootstrap4CSS' );
//Javascript
wp_register_script( 'bootstrap4JS', get_template_directory_uri() . '/assets/vendor/bootstrap/js/bootstrap.min.js', array( 'jquery' ), TAINACAN_INTERFACE_VERSION, true );

View File

@ -3,7 +3,7 @@
<!-- Get the banner to display -->
<?php get_template_part( 'template-parts/bannerheader' ); ?>
<div class="mt-5 max-large margin-one-column">
<main class="mt-5 max-large margin-one-column">
<div class="row">
<div class="col col-sm mx-sm-auto">
<div id="content" role="main">
@ -11,5 +11,5 @@
</div><!-- /#content -->
</div>
</div><!-- /.row -->
</div>
</main>
<?php get_footer(); ?>

View File

@ -1,4 +1,4 @@
<div class="pl-lg-0 col-12 col-lg-3 pt-4 mt-4 pt-md-0 mt-md-0">
<div class="pl-lg-0 col-12 col-lg-3 pt-md-0 mt-md-0">
<div id="sidebar" class="py-4 pt-md-0 mx-2 mx-sm-0 sidebar hidden-print">
<?php dynamic_sidebar( 'tainacan-sidebar-right' ); ?>
</div>

File diff suppressed because one or more lines are too long