Skip to content

Commit

Permalink
fix(SqlLab): make icon placement even (apache#25372)
Browse files Browse the repository at this point in the history
  • Loading branch information
CorbinBullard authored Sep 28, 2023
1 parent 434f869 commit 7e7ced0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,9 @@ const collapseStyles = (theme: SupersetTheme) => css`
padding: 0px ${theme.gridUnit * 4}px 0px 0px !important;
}
.ant-collapse-arrow {
top: ${theme.gridUnit * 2}px !important;
padding: 0 !important;
bottom: ${theme.gridUnit}px !important;
right: ${theme.gridUnit * 4}px !important;
color: ${theme.colors.primary.dark1} !important;
&:hover {
color: ${theme.colors.primary.dark2} !important;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,11 @@ const TableElement = ({ table, ...props }: TableElementProps) => {
display: flex;
column-gap: ${theme.gridUnit * 1.5}px;
margin-right: ${theme.gridUnit}px;
& span {
display: flex;
justify-content: center;
width: ${theme.gridUnit * 4}px;
}
`}
>
{keyLink}
Expand Down

0 comments on commit 7e7ced0

Please sign in to comment.