Skip to content
Snippets Groups Projects
Commit 40bca79e authored by Sinzeanu Demetriad's avatar Sinzeanu Demetriad
Browse files

fix(Radio buttton): Confirmation radio-buttons alignment on confirmation box

parent 9a565f92
No related branches found
No related tags found
2 merge requests!110Sprint 21 Features,!82fix(Radio buttton): Confirmation radio-buttons alignment on confirmation box
...@@ -13,14 +13,14 @@ export default { ...@@ -13,14 +13,14 @@ export default {
&::before { &::before {
display: none; display: none;
} }
input:checked + span::before { input:checked + span::before {
border-color: ${th('colorPrimary')}; border-color: ${th('colorPrimary')};
background: url('data:image/svg+xml;utf8,${encodeURIComponent( background: url('data:image/svg+xml;utf8,${encodeURIComponent(
checkIcon, checkIcon,
)}') center no-repeat; )}') center no-repeat;
} }
`, `,
Input: css` Input: css`
opacity: 0; opacity: 0;
margin-left: calc(${th('gridUnit')} * -2); margin-left: calc(${th('gridUnit')} * -2);
...@@ -35,9 +35,10 @@ export default { ...@@ -35,9 +35,10 @@ export default {
background: transparent; background: transparent;
border: 1px solid #939393; border: 1px solid #939393;
border-radius: 50%; border-radius: 50%;
display: inline-block; display: inline-flex;
margin-right: ${th('gridUnit')}; margin-right: ${th('gridUnit')};
vertical-align: middle; vertical-align: text-bottom;
align-items: center;
height: calc(${th('gridUnit')} * 2); height: calc(${th('gridUnit')} * 2);
width: calc(${th('gridUnit')} * 2); width: calc(${th('gridUnit')} * 2);
......
...@@ -158,7 +158,7 @@ const hindawiTheme = { ...@@ -158,7 +158,7 @@ const hindawiTheme = {
lineHeightHeading1: '37px', lineHeightHeading1: '37px',
lineHeightHeading2: '29px', lineHeightHeading2: '29px',
lineHeightHeading3: '19px', lineHeightHeading3: '20px',
lineHeightHeading4: '18px', lineHeightHeading4: '18px',
lineHeightHeading5: '18px', lineHeightHeading5: '18px',
lineHeightHeading6: '18px', lineHeightHeading6: '18px',
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment