Skip to content

Commit

Permalink
fix: header style
Browse files Browse the repository at this point in the history
  • Loading branch information
jacovinus committed Jan 20, 2024
1 parent 199d4b2 commit 9f4b4be
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,17 +45,9 @@ export default function CardinalityTotals({ isLoading }) {

return (
<div className={cx(TotalRowStyle(theme))}>
<div
style={{
textAlign: "center",
padding: "10px 0px",
margin: "0px 4px",
fontSize: "12px",
borderRadius: "3px",
background: theme.shadow,
}}
<div className="total-rows-header"
>
Deleted fingerprints in Maintainance mode
Fingerprints in Maintainance mode
</div>
<div className="table">
<div className="table-header">
Expand Down
11 changes: 10 additions & 1 deletion packages/main/plugins/Cardinality/TotalsPanel/style.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,14 @@ export const TotalRowStyle = (theme: QrynTheme) => css`
display: flex;
flex: 1;
flex-direction: column;
.total-rows-header {
text-align: center;
padding: 10px 0px;
margin: 0px 4px;
font-size: 12px;
border-radius: 3px;
background: ${theme.shadow};
}
.table {
display: table;
width: 100%;
Expand All @@ -20,6 +27,8 @@ export const TotalRowStyle = (theme: QrynTheme) => css`
letter-spacing: 1px;
cursor: pointer;
margin: 1px;
padding-top:20px;
padding-bottom:4px;
&:hover {
background: ${theme.deep};
}
Expand Down

0 comments on commit 9f4b4be

Please sign in to comment.