Update to jekyll 4 (modernization)

This commit is contained in:
T
2026-08-08 01:02:25 +02:00
parent 76447e3928
commit 2787db80e8
142 changed files with 275 additions and 283 deletions
+10 -16
View File
@@ -101,7 +101,7 @@
.footer-heading {
font-size: 18px;
margin-bottom: calc(#{$spacing-unit} / 2);
margin-bottom: calc($spacing-unit / 2);
}
.contact-list,
@@ -113,49 +113,43 @@
.footer-col-wrapper {
font-size: 15px;
color: $grey-color;
margin-left: calc(-1 * #{$spacing-unit} / 2);
margin-left: calc(-1 * $spacing-unit / 2);
@extend %clearfix;
}
.footer-col {
float: left;
margin-bottom: calc(#{$spacing-unit} / 2);
padding-left: calc(#{$spacing-unit} / 2);
margin-bottom: calc($spacing-unit / 2);
padding-left: calc($spacing-unit / 2);
}
.footer-col-1 {
width: -webkit-calc(35% - (#{$spacing-unit} / 2));
width: calc(35% - (#{$spacing-unit} / 2));
width: calc(35% - ($spacing-unit / 2));
}
.footer-col-2 {
width: -webkit-calc(20% - (#{$spacing-unit} / 2));
width: calc(20% - (#{$spacing-unit} / 2));
width: calc(20% - ($spacing-unit / 2));
}
.footer-col-3 {
width: -webkit-calc(45% - (#{$spacing-unit} / 2));
width: calc(45% - (#{$spacing-unit} / 2));
width: calc(45% - ($spacing-unit / 2));
}
@include media-query($on-laptop) {
.footer-col-1,
.footer-col-2 {
width: -webkit-calc(50% - (#{$spacing-unit} / 2));
width: calc(50% - (#{$spacing-unit} / 2));
width: calc(50% - ($spacing-unit / 2));
}
.footer-col-3 {
width: -webkit-calc(100% - (#{$spacing-unit} / 2));
width: calc(100% - (#{$spacing-unit} / 2));
width: calc(100% - ($spacing-unit / 2));
}
}
@include media-query($on-palm) {
.footer-col {
float: none;
width: -webkit-calc(100% - (#{$spacing-unit} / 2));
width: calc(100% - (#{$spacing-unit} / 2));
width: calc(100% - ($spacing-unit / 2));
}
}