File tree Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Original file line number Diff line number Diff line change @@ -187,6 +187,31 @@ section.event {
187
187
margin : var (--spacing-2 );
188
188
}
189
189
190
+ /* Ember data uses styled elements in markdown blocks that conflict with the
191
+ default styles for blockquotes (because of ::before block that has an
192
+ absolutely positioned quote mark).
193
+ */
194
+ blockquote [style ]::before {
195
+ all : initial;
196
+ }
197
+
198
+ /* Styles for tables (from markdown)
199
+ Should probably be upstreamed to ember-styleguide
200
+ */
201
+ table {
202
+ text-align : left;
203
+ border-collapse : collapse;
204
+ }
205
+
206
+ table tr {
207
+ border-bottom : 1px solid var (--color-gray-300 );
208
+ }
209
+
210
+ table th ,
211
+ table td {
212
+ padding : var (--spacing-1 );
213
+ }
214
+
190
215
@media (width > = 845px) {
191
216
.es-header {
192
217
padding : 0 var (--spacing-4 );
You can’t perform that action at this time.
0 commit comments