Skip to content

Commit

Permalink
fix(next-release/main): update basic markdown table styling (#6280)
Browse files Browse the repository at this point in the history
* add simple table styling

* move to tables stylesheet

---------

Co-authored-by: Rene Brandel <[email protected]>
  • Loading branch information
hbuchel and renebrandel authored Nov 9, 2023
1 parent 54d11a8 commit 1400db0
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions src/styles/table.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
/* Basic styling for generic markdown tables which don't currently
* use Amplify UI primitives/classNames */
table:not([class]) {
border-collapse: collapse;
th {
border-top: 1px solid var(--amplify-colors-border-secondary);
}
td,
th {
border-bottom: 1px solid var(--amplify-colors-border-secondary);
padding: var(--amplify-space-xs) var(--amplify-space-small);
border-right: 1px solid var(--amplify-colors-border-secondary);
&:first-child {
border-left: 1px solid var(--amplify-colors-border-secondary);
}
}
tbody {
tr:hover {
background-color: var(--amplify-colors-neutral-10);
}
}
}

/* These styles are used in the FeatureFlags component */
.amplify-table {
&__th {
background-color: var(--amplify-colors-neutral-90);
Expand Down

0 comments on commit 1400db0

Please sign in to comment.