Skip to content
Snippets Groups Projects
Unverified Commit f894b60b authored by Sean Hatfield's avatar Sean Hatfield Committed by GitHub
Browse files

Fix light mode table colors (#2873)


* fix light mode table colors

* fix table styles from being overwritten in other sections that are not chat messages

---------

Co-authored-by: default avatarTimothy Carambat <rambat1010@gmail.com>
parent a51de73a
No related branches found
No related tags found
No related merge requests found
......@@ -116,6 +116,7 @@
border-color: var(--theme-sidebar-border);
}
/*
This is to override the default border color for the select and input elements
in the onboarding flow when the theme is not light. This only applies to the
......@@ -774,6 +775,10 @@ dialog::backdrop {
color: #fff;
}
[data-theme="light"] .markdown table {
@apply invert;
}
.file-row:nth-child(even) {
@apply bg-theme-bg-primary;
background-color: var(--theme-file-row-even);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment