Skip to content

Commit

Permalink
feat: add drag_and_drop feature
Browse files Browse the repository at this point in the history
  • Loading branch information
ciusji committed Oct 19, 2022
1 parent 96d6c72 commit 6cf7faa
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ const ButtonContainer = styled.div`
`;

const DatasourceContainer = styled.div`
background-color: ${({ theme }) => theme.colors.grayscale.light4};
// background-color: ${({ theme }) => theme.colors.grayscale.light4};
position: relative;
height: 100%;
display: flex;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ const Styles = styled.div`
max-height: 100%;
}
.data-source-selection {
background-color: ${({ theme }) => theme.colors.grayscale.light4};
// background-color: ${({ theme }) => theme.colors.grayscale.light4};
padding: ${({ theme }) => 2 * theme.gridUnit}px 0;
border-right: 1px solid ${({ theme }) => theme.colors.grayscale.light2};
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ const OptionContainer = styled.div`
width: ${({ theme }) => theme.gridUnit * 7}px;
display: inline-block;
text-align: center;
text-transform: lowercase;
font-weight: ${({ theme }) => theme.typography.weights.bold};
}
`;
Expand Down
9 changes: 9 additions & 0 deletions spotrix-frontend/stylesheets/less/index.less
Original file line number Diff line number Diff line change
Expand Up @@ -94,3 +94,12 @@ header {
text-align: center;
line-height: 47px;
}

.column {
font-size: 12px;
background-color: rgb(247, 247, 247);
margin: 8px 0;
border-radius: 4px;
padding: 0;
cursor: pointer;
}

0 comments on commit 6cf7faa

Please sign in to comment.