Skip to content
Snippets Groups Projects
Commit 64ed7d0d authored by Kyle Doherty's avatar Kyle Doherty
Browse files

make sure scalars in the query builder are larger

parent 44038fa6
No related branches found
No related tags found
No related merge requests found
......@@ -758,3 +758,8 @@
.FilterInput:hover .FilterRemove-field {
opacity: 1;
}
/* need to do this ugliness to override the locally scoped font size from Scalar.css */
#react_qb_viz .ScalarValue {
font-size: 5em;
}
......@@ -108,7 +108,7 @@ export default class Scalar extends Component {
return (
<div className={cx(className, styles.Scalar, styles[isSmall ? "small" : "large"])}>
<div className="Card-title absolute top right p1 px2">{actionButtons}</div>
<Ellipsified className={styles.Value} tooltip={fullScalarValue} alwaysShowTooltip={fullScalarValue !== compactScalarValue}>
<Ellipsified className={cx(styles.Value, 'ScalarValue')} tooltip={fullScalarValue} alwaysShowTooltip={fullScalarValue !== compactScalarValue}>
{compactScalarValue}
</Ellipsified>
<Ellipsified className={styles.Title} tooltip={card.name}>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment