Open sbyardnss opened 7 months ago
Can add classnames npm package to help with conditional styling if it seems optimal.
example usage:
import classNames from 'classnames';
const buttonClass = classNames({
'button-default': !isSelected,
'button-selected': isSelected,
});
<button className={buttonClass} onClick={handleClick}>Select</button>
Search repo for
TODO: CSS-ISSUE
to find some places that need to be fixed
We can condense much of our styling sheets -modals -buttons -text