Skip to content

Commit

Permalink
fix: make sure dataset selector is scrollbar
Browse files Browse the repository at this point in the history
  • Loading branch information
ivan-aksamentov committed Sep 29, 2023
1 parent de83b6b commit ab22f86
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@ const Container = styled.div`
border: 1px #ccc9 solid;
border-radius: 5px;
max-width: 100%;
height: 110px;
min-height: 110px;
`

export interface ChangeDatasetButtonProps extends ButtonProps {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ const Container = styled.div`
padding: 12px;
border: 1px #ccc9 solid;
border-radius: 5px;
margin: 0.5rem auto;
`

const FlexLeft = styled.div`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,8 @@ function DatasetSelection() {
}

const Wrapper = styled.div`
display: flex;
flex: 1;
width: 100% !important;
@media (min-width: 991.98px) {
Expand All @@ -80,6 +82,8 @@ const Wrapper = styled.div`
`

const Row = styled(RowBase)`
display: flex;
flex: 1;
width: 100% !important;
@media (min-width: 991.98px) {
Expand All @@ -89,6 +93,8 @@ const Row = styled(RowBase)`
`

const Col = styled(ColBase)`
display: flex;
flex: 1;
width: 100% !important;
@media (min-width: 991.98px) {
Expand Down

0 comments on commit ab22f86

Please sign in to comment.