Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: adjust options dialog for easier scanning #580

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import TextBaseOption from './TextBaseOption'
const RangeAxisDecimals = () => (
<TextBaseOption
type="number"
width="72px"
width="96px"
label={i18n.t('Decimals')}
placeholder={i18n.t('Auto')}
option={{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import TextBaseOption from './TextBaseOption'
export const RangeAxisSteps = () => (
<TextBaseOption
type="number"
width="72px"
width="96px"
helpText={i18n.t(
'The number of axis steps between the min and max values'
)}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ export const tabSection = css.resolve`
div {
padding: ${spacers.dp16} 0;
}
div:not(:last-child) {
border-bottom: 1px solid ${colors.grey300};
margin-bottom: ${spacers.dp8};
}
`

export const tabSectionContent = css.resolve`
Expand All @@ -25,9 +29,11 @@ export const tabSectionContent = css.resolve`
export const tabSectionTitle = css.resolve`
span {
display: inline-block;
padding-bottom: ${spacers.dp16};
font-size: ${spacers.dp16};
padding-bottom: ${spacers.dp12};
font-size: 15px;
color: ${colors.grey900};
font-weight: 500;
letter-spacing: 0.2px;
}
`

Expand Down