Skip to content

Commit

Permalink
Merge branch 'develop' into release-0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pengyin-shan committed Sep 18, 2023
2 parents 18cd3da + 8ad0178 commit 0024989
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Replace the color legends on the EQIP, CSP, and CRP pages with the customized scheme [189](https://github.com/policy-design-lab/pdl-frontend/issues/189)
- Adjusted the menu height of CRP page on small screen [#190](https://github.com/policy-design-lab/pdl-frontend/issues/190)

### Fixed
- The tables for Title II shows right most column in any screen size [#192](https://github.com/policy-design-lab/pdl-frontend/issues/192)

## [0.8.0] - 2023-09-06

### Added
Expand Down
1 change: 1 addition & 0 deletions src/components/crp/CRPTotalTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import "../../styles/table.css";

const Styles = styled.div`
padding: 1rem;
margin-left: ${window.innerWidth <= 1440 ? "480px" : "auto"};
table {
border-spacing: 0;
Expand Down
1 change: 1 addition & 0 deletions src/components/crp/CategoryTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import "../../styles/table.css";

const Styles = styled.div`
padding: 1rem;
margin-left: ${window.innerWidth <= 1440 ? "480px" : "auto"};
table {
border-spacing: 0;
Expand Down
1 change: 1 addition & 0 deletions src/components/csp/CSPTotalTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import "../../styles/table.css";

const Styles = styled.div`
padding: 1rem;
margin-left: ${window.innerWidth <= 1440 ? "480px" : "auto"};
table {
border-spacing: 0;
Expand Down
1 change: 1 addition & 0 deletions src/components/csp/CategoryTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import "../../styles/table.css";

const Styles = styled.div`
padding: 1rem;
margin-left: ${window.innerWidth <= 1440 ? "480px" : "auto"};
table {
border-spacing: 0;
Expand Down
1 change: 1 addition & 0 deletions src/components/eqip/CategoryTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import "../../styles/table.css";

const Styles = styled.div`
padding: 1rem;
margin-left: ${window.innerWidth <= 1440 ? "480px" : "auto"};
table {
border-spacing: 0;
Expand Down
1 change: 1 addition & 0 deletions src/components/eqip/EQIPTotalTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import "../../styles/table.css";

const Styles = styled.div`
padding: 1rem;
margin-left: ${window.innerWidth <= 1440 ? "480px" : "auto"};
table {
border-spacing: 0;
Expand Down

0 comments on commit 0024989

Please sign in to comment.