Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(next-release/main): update basic markdown table styling #6280

Merged
merged 5 commits into from
Nov 9, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading