mirror of
https://github.com/FlipsideCrypto/flipside-js.git
synced 2026-02-06 10:48:11 +00:00
Update handling of divider color.
This commit is contained in:
parent
e3ee0fd590
commit
5010dfd2ef
@ -193,9 +193,6 @@
|
||||
alternating: true,
|
||||
alternatingColors: "#eeeeee",
|
||||
dividers: false
|
||||
// style: {
|
||||
// padding: "5px 10px"
|
||||
// }
|
||||
},
|
||||
title: {
|
||||
text: "Top Coins",
|
||||
|
||||
@ -300,7 +300,9 @@ export default class MultiTable extends Component<Props, State> {
|
||||
<td
|
||||
class={`fs-multi-${col}`}
|
||||
style={{
|
||||
borderBottom: `1px solid ${props.rows.dividersColor}`,
|
||||
borderBottom: props.rows.dividers
|
||||
? `1px solid ${props.rows.dividersColor}`
|
||||
: null,
|
||||
...props.rows.style
|
||||
}}
|
||||
>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user