From: Jorge González Date: Wed, 24 Jun 2020 16:28:47 +0000 (-0500) Subject: Fix table separator typo (#31162) X-Git-Tag: v5.0.0-alpha2~232 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d33a560dd6cad89dc8e54a4b6e4fbea73255ab5c;p=thirdparty%2Fbootstrap.git Fix table separator typo (#31162) --- diff --git a/scss/_tables.scss b/scss/_tables.scss index 5ae45ffe8e..47ffde1663 100644 --- a/scss/_tables.scss +++ b/scss/_tables.scss @@ -40,7 +40,7 @@ // Highlight border color between thead, tbody and tfoot. > :not(:last-child) > :last-child > * { - border-bottom-color: $table-group-seperator-color; + border-bottom-color: $table-group-separator-color; } } diff --git a/scss/_variables.scss b/scss/_variables.scss index d2260850ca..707908fa8c 100644 --- a/scss/_variables.scss +++ b/scss/_variables.scss @@ -507,7 +507,7 @@ $table-border-color: $border-color !default; $table-striped-order: odd !default; -$table-group-seperator-color: currentColor !default; +$table-group-separator-color: currentColor !default; $table-caption-color: $text-muted !default;