From d33a560dd6cad89dc8e54a4b6e4fbea73255ab5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jorge=20Gonz=C3=A1lez?= Date: Wed, 24 Jun 2020 11:28:47 -0500 Subject: [PATCH] Fix table separator typo (#31162) --- scss/_tables.scss | 2 +- scss/_variables.scss | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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;