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

github.com/jgthms/bulma.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/sass
diff options
context:
space:
mode:
authorJeremy Thomas <bbxdesign@gmail.com>2022-05-08 16:10:11 +0300
committerJeremy Thomas <bbxdesign@gmail.com>2022-05-08 16:10:11 +0300
commitd4b62a280322c1bd2b593ed35fe2af109446c9fe (patch)
tree6c75089bf6a0c598f30d54c6e0e6405ea11311d9 /sass
parent0ce084170a59af8615c419f1a33c2941b3711991 (diff)
Fix #3076
Diffstat (limited to 'sass')
-rw-r--r--sass/elements/table.sass3
1 files changed, 2 insertions, 1 deletions
diff --git a/sass/elements/table.sass b/sass/elements/table.sass
index 7ea6c112..f47d2123 100644
--- a/sass/elements/table.sass
+++ b/sass/elements/table.sass
@@ -7,6 +7,7 @@ $table-cell-border: 1px solid $border !default
$table-cell-border-width: 0 0 1px !default
$table-cell-padding: 0.5em 0.75em !default
$table-cell-heading-color: $text-strong !default
+$table-cell-text-align: left !default
$table-head-cell-border-width: 0 0 2px !default
$table-head-cell-color: $text-strong !default
@@ -60,7 +61,7 @@ $table-colors: $colors !default
th
color: $table-cell-heading-color
&:not([align])
- text-align: inherit
+ text-align: $table-cell-text-align
tr
&.is-selected
background-color: $table-row-active-background-color