Skip to content
This repository was archived by the owner on Jul 28, 2025. It is now read-only.

Commit 1a6e47e

Browse files
committed
new style
1 parent 5ad27a4 commit 1a6e47e

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

src/components/AddRow.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ export function AddRow(props: AddRowProps) {
6868
sx={{
6969
bordercolor: StyleVariables.TEXT_NORMAL,
7070
border: 0,
71-
minWidth: "30px",
7271
}}
7372
>
7473
<Button
@@ -77,7 +76,6 @@ export function AddRow(props: AddRowProps) {
7776
setInputNewRow("");
7877
setShowNewRow(!showNewRow);
7978
}}
80-
size="small"
8179
sx={{
8280
bgcolor: StyleVariables.BACKGROUND_PRIMARY,
8381
color: StyleVariables.TEXT_NORMAL,
@@ -86,10 +84,9 @@ export function AddRow(props: AddRowProps) {
8684
color: StyleVariables.TEXT_NORMAL,
8785
border: 0,
8886
},
89-
height: "30px",
90-
maxHeight: "30px",
9187
border: 0,
9288
}}
89+
style={{ minWidth: "30px" }}
9390
>
9491
{showNewRow ? (
9592
<CloseIcon />

src/components/NavBar.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,8 @@ export function NavBar(navBarProps: NavBarProps) {
110110
<Toolbar
111111
style={{
112112
minHeight: "2.65rem",
113+
padding: 0,
114+
paddingLeft: "2px",
113115
}}
114116
>
115117
<IconButton

src/components/reducers/DataviewFilters.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export default function EditFiltersButton(props: DataviewFiltersProps) {
4444
size="small"
4545
onClick={openFiltersGroupHandler}
4646
key={`Button-FilterConditions-DataviewFilters`}
47-
style={{ minWidth: "0px", padding: "2px" }}
47+
style={{ minWidth: "0px", padding: "2px", borderRadius: "0px" }}
4848
>
4949
<span
5050
className="svg-icon svg-gray"

src/components/reducers/ToggleFiltersButton.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export default function ToggleFiltersButton(props: DataviewFiltersProps) {
3030
size="small"
3131
onClick={enableFilterHandler}
3232
key={`Button-Enabled-DataviewFilters`}
33-
style={{ minWidth: "0px", padding: "2px" }}
33+
style={{ minWidth: "0px", padding: "2px", borderRadius: "0px" }}
3434
>
3535
<span className="svg-icon svg-gray">
3636
{filters.enabled ? <FilterOnIcon /> : <FilterOffIcon />}

src/components/styles/NavBarStyles.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ export const SearchIconWrapper = styled('div')(({ theme }) => ({
2121
display: 'flex',
2222
alignItems: 'center',
2323
justifyContent: 'center',
24-
textAlign: 'center'
24+
textAlign: 'center',
25+
color: StyleVariables.TEXT_NORMAL,
2526
}));
2627

2728
export const DebouncedInputWrapper = styled('div')(({ theme }) => ({

0 commit comments

Comments
 (0)