@visitwonders/assembly 0.18.0 → 0.19.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/data/table.css +12 -0
- package/package.json +1 -1
package/dist/data/table.css
CHANGED
|
@@ -130,6 +130,18 @@
|
|
|
130
130
|
outline-offset: -2px;
|
|
131
131
|
}
|
|
132
132
|
|
|
133
|
+
/* The button is a flex row, so text-align can't move its label. A column's
|
|
134
|
+
alignment has to drive the button's main-axis distribution: the chevron
|
|
135
|
+
follows the label to the aligned edge. Left/unset keeps space-between, so
|
|
136
|
+
the chevron stays pinned to the trailing edge. */
|
|
137
|
+
.header-cell_e4aed93fe[data-align="center"] .sort-button_e4aed93fe {
|
|
138
|
+
justify-content: center;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.header-cell_e4aed93fe[data-align="right"] .sort-button_e4aed93fe {
|
|
142
|
+
justify-content: flex-end;
|
|
143
|
+
}
|
|
144
|
+
|
|
133
145
|
.header-text_e4aed93fe {
|
|
134
146
|
display: inline;
|
|
135
147
|
}
|