Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <markd.otto@gmail.com>2020-05-14 20:43:33 +0300
committerGitHub <noreply@github.com>2020-05-14 20:43:33 +0300
commit46d876314b37e1ada096f259f74cf0c54dcd8618 (patch)
tree8aaacaa64e79576af93850299e52e58c983762ab /scss/_tables.scss
parent5d11d5790a00444bdc6625c7229c86bb1a162350 (diff)
Split table cell padding variables (#30815)
Diffstat (limited to 'scss/_tables.scss')
-rw-r--r--scss/_tables.scss4
1 files changed, 2 insertions, 2 deletions
diff --git a/scss/_tables.scss b/scss/_tables.scss
index 6aba4def2a..b7a50b42a1 100644
--- a/scss/_tables.scss
+++ b/scss/_tables.scss
@@ -24,7 +24,7 @@
// Another advantage is that this generates less code and makes the selector less specific making it easier to override.
// stylelint-disable-next-line selector-max-universal
> :not(caption) > * > * {
- padding: $table-cell-padding;
+ padding: $table-cell-padding-y $table-cell-padding-x;
background-color: var(--bs-table-bg);
background-image: linear-gradient(var(--bs-table-accent-bg), var(--bs-table-accent-bg));
border-bottom-width: $table-border-width;
@@ -62,7 +62,7 @@
.table-sm {
// stylelint-disable-next-line selector-max-universal
> :not(caption) > * > * {
- padding: $table-cell-padding-sm;
+ padding: $table-cell-padding-y-sm $table-cell-padding-x-sm;
}
}