Skip to content

Commit a40cf69

Browse files
authored
Merge pull request #958 from ember-learn/kg-website-redesign
2 parents a289917 + 86bfc88 commit a40cf69

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

app/styles/app.css

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,31 @@ section.event {
187187
margin: var(--spacing-2);
188188
}
189189

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+
190215
@media (width >= 845px) {
191216
.es-header {
192217
padding: 0 var(--spacing-4);

0 commit comments

Comments
 (0)