Commit e2b4ab23 authored by Henk Verlinde's avatar Henk Verlinde
Browse files

deps: bump versions to latest

parent f5d1bae8
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
node_modules
public
resources
# Local Netlify folder
.netlify
TODO
 No newline at end of file
.hugo_build.lock
 No newline at end of file
+15 −1
Original line number Diff line number Diff line
{
  "extends": "stylelint-config-standard",
  "extends": "stylelint-config-standard-scss",
  "rules": {
    "no-empty-source": null,
    "string-quotes": "double",
    "scss/comment-no-empty": null,
    "max-line-length": null,
    "scss/at-extend-no-missing-placeholder": null,
    "scss/dollar-variable-colon-space-after": null,
    "scss/dollar-variable-empty-line-before": null,
    "color-function-notation": null,
    "alpha-value-notation": null,
    "selector-id-pattern": null,
    "selector-class-pattern": null,
    "scss/no-global-function-names": null,
    "number-max-precision": null,
    "hue-degree-notation": null,
    "value-no-vendor-prefix": null,
    "property-no-vendor-prefix": null,
    "at-rule-no-unknown": [
      true,
      {
+6 −6
Original line number Diff line number Diff line
/* jost-regular - latin */
@font-face {
  font-family: "Jost";
  font-family: Jost;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
@@ -12,7 +12,7 @@

/* jost-500 - latin */
@font-face {
  font-family: "Jost";
  font-family: Jost;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
@@ -24,7 +24,7 @@

/* jost-700 - latin */
@font-face {
  font-family: "Jost";
  font-family: Jost;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
@@ -36,7 +36,7 @@

/* jost-italic - latin */
@font-face {
  font-family: "Jost";
  font-family: Jost;
  font-style: italic;
  font-weight: 400;
  font-display: swap;
@@ -48,7 +48,7 @@

/* jost-500italic - latin */
@font-face {
  font-family: "Jost";
  font-family: Jost;
  font-style: italic;
  font-weight: 500;
  font-display: swap;
@@ -60,7 +60,7 @@

/* jost-700italic - latin */
@font-face {
  font-family: "Jost";
  font-family: Jost;
  font-style: italic;
  font-weight: 700;
  font-display: swap;
+1 −0
Original line number Diff line number Diff line
@@ -15,6 +15,7 @@ $black: #000;
$yellow:   #ffe000;
$black:    #1d2d35;
$beige:    #fbf7f0;

// $red:      #e55235;
$purple:   #5d2f86;
$brown:    #aa9c84;
+3 −3
Original line number Diff line number Diff line
@@ -39,15 +39,15 @@
.page-links h3 {
  text-transform: uppercase;
  font-size: $font-size-base;
  margin: 1.25rem 0 0.5rem 0;
  padding: 1.5rem 0 0 0;
  margin: 1.25rem 0 0.5rem;
  padding: 1.5rem 0 0;
}

@include media-breakpoint-up(lg) {
  .docs-links h3,
  .page-links h3 {
    margin: 1.125rem 1.5rem 0.75rem 0;
    padding: 1.375rem 0 0 0;
    padding: 1.375rem 0 0;
  }
}

Loading