Progress Commit

Signed-off-by: Dave Richer <dave@imexsystems.ca>
This commit is contained in:
Dave Richer
2024-05-13 19:52:32 -04:00
parent a0b9f99dd3
commit 095e1e9789
2 changed files with 11 additions and 11 deletions

View File

@@ -81,13 +81,15 @@ export const CustomPopoverContent = styled(PopoverContent)`
export const BoardWrapper = styled.div`
background-color: #3179ba;
overflow-y: hidden;
// TODO: This was defaulted to hidden, changed to accommodate board
overflow-y: scroll;
padding: 5px;
color: #393939;
display: flex;
flex-direction: row;
align-items: flex-start;
height: 100vh;
// TODO: This was commented out to match existing board style
//height: 100vh;
`;
export const Header = styled.header`
@@ -104,8 +106,8 @@ export const Section = styled.section`
position: relative;
padding: 10px;
display: inline-flex;
height: auto;
max-height: 90%;
// TODO: This was commented out to match existing board style
//max-height: 90%;
flex-direction: column;
`;
@@ -138,7 +140,8 @@ export const ScrollableLane = styled.div`
min-width: 250px;
overflow-x: hidden;
align-self: center;
max-height: 90vh;
// TODO: This was commented out to match existing board style
//max-height: 90vh;
margin-top: 10px;
flex-direction: column;
justify-content: space-between;