Skip to content

Commit

Permalink
Fix className
Browse files Browse the repository at this point in the history
  • Loading branch information
Frank Fischer committed Dec 8, 2015
1 parent 867c289 commit 2ee5a6b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion docs/src/app/components/PropTypeDescription.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const PropTypeDescription = React.createClass({
}

return (
<div className="propsTable">
<div className="propTypeDescription">
<MarkdownElement text={text} />
</div>
);
Expand Down
14 changes: 7 additions & 7 deletions docs/src/app/components/props-table.css
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
.propsTable table tr:nth-child(2n) {
.propTypeDescription table tr:nth-child(2n) {
background-color: #fff;
}

.propsTable table td, .propsTable table th {
.propTypeDescription table td, .propTypeDescription table th {
border-top: 1px solid rgba(0, 0, 0, 0.06);
border-left: 0 none;
border-right: 0 none;
display: table-cell;
vertical-align: top;
}

.propsTable table th {
.propTypeDescription table th {
border-bottom: 2px solid rgba(0, 0, 0, 0.06);
border-top: 0 none;
color: #888;
Expand All @@ -19,23 +19,23 @@
text-align: left;
}

.propsTable table td {
.propTypeDescription table td {
color: #266d90;
font-family: Menlo,Monaco,Consolas,"Courier New",monospace;
font-size: 90%;
}

.propsTable table td + td {
.propTypeDescription table td + td {
color: #bf2a5c;
}

.propsTable table td + td + td {
.propTypeDescription table td + td + td {
color: #666;
font-family: Menlo,Monaco,Consolas,"Courier New",monospace;
font-size: 90%;
}

.propsTable table td + td + td + td {
.propTypeDescription table td + td + td + td {
color: rgba(51, 51, 51, 0.9);
font-family: "Roboto", sans-serif;
font-size: 95%;
Expand Down

0 comments on commit 2ee5a6b

Please sign in to comment.