⬆️ Upgrade CSS and classes to support Bootstrap 5
This commit is contained in:
parent
7dede6ddbd
commit
28e4d64885
4 changed files with 18 additions and 12 deletions
|
|
@ -1,14 +1,18 @@
|
||||||
|
@use "sass:map";
|
||||||
|
|
||||||
@each $prop, $abbrev in (width: w, height: h) {
|
@each $prop, $abbrev in (width: w, height: h) {
|
||||||
@each $bpname,$bpsize in $grid-breakpoints {
|
@each $bpname,$bpsize in $grid-breakpoints {
|
||||||
@media (min-width: $bpsize) {
|
@media (min-width: $bpsize) {
|
||||||
@each $size, $length in $sizes {
|
$props: map-get($utilities, $prop);
|
||||||
.#{$abbrev}-#{$bpname}-#{$size} {
|
$propValues: map-get($props, 'values');
|
||||||
#{$prop}: $length;
|
@each $size, $length in $propValues {
|
||||||
}
|
.#{$abbrev}-#{$bpname}-#{$size} {
|
||||||
.m#{$abbrev}-#{$bpname}-#{$size} {
|
#{$prop}: $length;
|
||||||
max-#{$prop}: $length;
|
}
|
||||||
}
|
.m#{$abbrev}-#{$bpname}-#{$size} {
|
||||||
|
max-#{$prop}: $length;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,5 @@
|
||||||
|
$navbar-padding-x: 1rem;
|
||||||
|
|
||||||
@import 'bootstrap';
|
@import 'bootstrap';
|
||||||
@import 'font-awesome-sprockets';
|
@import 'font-awesome-sprockets';
|
||||||
@import 'font-awesome';
|
@import 'font-awesome';
|
||||||
|
|
@ -17,7 +19,7 @@
|
||||||
|
|
||||||
.bd-sideboard {
|
.bd-sideboard {
|
||||||
aside {
|
aside {
|
||||||
padding: $table-cell-padding-sm;
|
padding: $table-cell-padding-x-sm;
|
||||||
}
|
}
|
||||||
|
|
||||||
header {
|
header {
|
||||||
|
|
|
||||||
|
|
@ -59,7 +59,7 @@
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<main class="bg-white rounded-large order-1 order-md-2 col-12 col-md-9 col-xl-10 py-md-3 pl-md-5 bd-content" role="main">
|
<main class="bg-white rounded-large order-1 order-md-2 col-12 col-md-9 col-xl-10 py-md-3 ps-md-5 bd-content" role="main">
|
||||||
<section class="entry-content container-fluid">
|
<section class="entry-content container-fluid">
|
||||||
{% if page.title %}
|
{% if page.title %}
|
||||||
<header class="entry-header">
|
<header class="entry-header">
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@ title: Introduction
|
||||||
<section id="webdeveloper">
|
<section id="webdeveloper">
|
||||||
<h2>Dan Jones, the Web Developer</h2>
|
<h2>Dan Jones, the Web Developer</h2>
|
||||||
|
|
||||||
<figure class="figure float-md-right mw-xs-100 mw-md-50">
|
<figure class="figure float-md-end mw-xs-100 mw-md-50">
|
||||||
<img src="https://res.cloudinary.com/danjones000/image/upload/v1518462377/danielrayjones/C64c_system.jpg"
|
<img src="https://res.cloudinary.com/danjones000/image/upload/v1518462377/danielrayjones/C64c_system.jpg"
|
||||||
class="figure-im img-fluid" alt="Commodore 64" />
|
class="figure-im img-fluid" alt="Commodore 64" />
|
||||||
<figcaption class="figure-caption">
|
<figcaption class="figure-caption">
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue