Skip to content

Commit

Permalink
Merge pull request #34 from concord-consortium/fix-positionings
Browse files Browse the repository at this point in the history
Fixes date range container width
  • Loading branch information
eireland authored Jan 29, 2024
2 parents 768c385 + 7e55ab9 commit a79afab
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/components/App.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.App {
padding: 12px;
box-sizing: content-box;
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: center;
Expand Down
2 changes: 1 addition & 1 deletion src/components/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const kPluginName = "NOAA Weather Station Data";
const kVersion = "0014";
const kInitialDimensions = {
width: 360,
height: 650
height: 670
};

export const App = () => {
Expand Down
4 changes: 2 additions & 2 deletions src/components/attribute-selector.scss
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,10 @@
}
}

.attribute-selection{
.attribute-selection {
display: flex;
flex-wrap: wrap;
margin: 8px 0 11px 0;
margin: 8px 12px 11px 12px;

.attribute-button {
display: flex;
Expand Down
2 changes: 1 addition & 1 deletion src/components/date-range/date-range.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
.date-range-container {
height: 73px;
padding: 8px 0px;
width:s $inner-container-width;
width: $inner-container-width;
background-color: #fff;

.date-range-header {
Expand Down

0 comments on commit a79afab

Please sign in to comment.