Skip to content

Commit

Permalink
Minor appearance styling details.
Browse files Browse the repository at this point in the history
  • Loading branch information
krulis-martin committed Feb 9, 2022
1 parent db48df6 commit 9d17ad9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { BugIcon } from '../../icons';
import './EvaluationTable.css';

const EvaluationTable = ({ evaluations, renderButtons, selectedRowId = '' }) => (
<Table>
<Table className="mb-0">
<thead>
<tr>
<th />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ class TestResultsTable extends Component {
showLogButton && results.reduce((out, { testName }) => out && !this.isLogOpen(testName), true);

return (
<Table responsive>
<Table responsive className="mb-0">
<thead>
<tr>
<th />
Expand Down
6 changes: 5 additions & 1 deletion src/containers/App/recodex.css
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,11 @@ a:focus {
* Bootstrap Enhancements
*/
code {
color: #063;
color: #072;
}

.recodex-markdown-container code {
white-space: pre-wrap;
}

.wider-tooltip {
Expand Down

0 comments on commit 9d17ad9

Please sign in to comment.