Skip to content

Commit

Permalink
Merge pull request #818 from visualize-admin/feat/new-ui-1
Browse files Browse the repository at this point in the history
feat: New UI (search + dataset preview)
  • Loading branch information
bprusinowski authored Nov 4, 2022
2 parents 094f5f0 + f159b4d commit 4a756f7
Show file tree
Hide file tree
Showing 19 changed files with 466 additions and 401 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ You can also check the [release page](https://github.com/visualize-admin/visuali
with scientific notation
- Dataset Preview:
- Added a "Run SPARQL query" button
- UI:
- Introduced new UI for search & dataset preview pages

## [3.11.0] - 2022-10-26

Expand Down
2 changes: 1 addition & 1 deletion app/components/form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -554,7 +554,7 @@ export const SearchField = ({
placeholder={placeholder}
autoComplete="off"
inputRef={inputRef}
sx={{ width: "100%", input: { borderRadius: 2 } }}
sx={{ width: "100%", minHeight: 40, input: { borderRadius: 2 } }}
endAdornment={
onReset && search && search !== "" ? (
<ButtonBase
Expand Down
2 changes: 1 addition & 1 deletion app/components/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -151,8 +151,8 @@ export const Logo = () => {
role="figure"
aria-labelledby="logo"
sx={{
width: "calc(20rem - 16px)",
display: ["none", "block"],
pr: 6,
borderRightWidth: "1px",
borderRightStyle: "solid",
borderRightColor: "grey.300",
Expand Down
2 changes: 1 addition & 1 deletion app/components/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export const AppLayout = ({ children }: { children?: ReactNode }) => (
<Flex
component="main"
role="main"
sx={{ flex: 1, flexDirection: "column", backgroundColor: "muted.main" }}
sx={{ flex: 1, flexDirection: "column" }}
>
{children}
</Flex>
Expand Down
Loading

1 comment on commit 4a756f7

@vercel
Copy link

@vercel vercel bot commented on 4a756f7 Nov 4, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

visualization-tool – ./

visualization-tool-ixt1.vercel.app
visualization-tool-git-main-ixt1.vercel.app
visualization-tool-alpha.vercel.app

Please sign in to comment.