feat(main): style changes and mobile version (#58)

Co-authored-by: msramalho <19508417+msramalho@users.noreply.github.com>
This commit is contained in:
Andrew Mudrov
2022-10-31 21:40:35 +04:00
committed by GitHub
parent 64d6b34469
commit 53d6f389e3
37 changed files with 966 additions and 584 deletions

View File

@@ -12,7 +12,6 @@ const PanelTree = ({ data, activeValues, onSelect, type }) => {
<li
key={val.title.replace(/ /g, "_")}
className="filter-filter active"
style={{ marginLeft: "20px" }}
>
<Checkbox
label={val.title}

View File

@@ -7,6 +7,7 @@ const CardText = ({ title, value, hoverValue = null }) => {
<div className="card-cell">
{title ? <h4>{title}</h4> : null}
<div
className="card-cell__text"
style={{
width: `fit-content`,
}}