fix: Alignment of point numbers in welcome pages (#9353)
* fix scroll in panel in property pane * fix table widget button height issue * fix alignment issues * hide canvas selection in preview mode * filter alignment issue fix * fix app mode issue with iframe widget * fix 404 alignment issues * fix generate page alignemnt issues * fix jsobjects empty container alignment issues * fix comments width issue * fix alignment issues
This commit is contained in:
parent
5ac086f6ce
commit
f738c5e087
|
|
@ -38,8 +38,8 @@ export default memo(function DataCollectionForm() {
|
|||
const [allowCollection, setAllowCollection] = useState(true);
|
||||
return (
|
||||
<DataCollectionFormWrapper>
|
||||
<FormHeaderWrapper>
|
||||
<FormHeaderIndex>2.</FormHeaderIndex>
|
||||
<FormHeaderWrapper className="relative flex flex-col items-start">
|
||||
<FormHeaderIndex className="absolute -left-6">2.</FormHeaderIndex>
|
||||
<FormHeaderLabel>
|
||||
{createMessage(WELCOME_FORM_DATA_COLLECTION_HEADER)}
|
||||
</FormHeaderLabel>
|
||||
|
|
|
|||
|
|
@ -45,8 +45,8 @@ export default function DetailsForm(
|
|||
|
||||
return (
|
||||
<DetailsFormWrapper ref={ref}>
|
||||
<FormHeaderWrapper>
|
||||
<FormHeaderIndex>1.</FormHeaderIndex>
|
||||
<FormHeaderWrapper className="relative flex-col items-start">
|
||||
<FormHeaderIndex className="absolute -left-6">1.</FormHeaderIndex>
|
||||
<FormHeaderLabel>{createMessage(WELCOME_FORM_HEADER)}</FormHeaderLabel>
|
||||
</FormHeaderWrapper>
|
||||
<StyledFormBodyWrapper>
|
||||
|
|
|
|||
|
|
@ -36,8 +36,8 @@ const NewsletterContainer = styled.div`
|
|||
export default memo(function NewsletterForm() {
|
||||
return (
|
||||
<NewsletterContainer>
|
||||
<FormHeaderWrapper>
|
||||
<FormHeaderIndex>3.</FormHeaderIndex>
|
||||
<FormHeaderWrapper className="relative flex-col items-start">
|
||||
<FormHeaderIndex className="absolute -left-6">3.</FormHeaderIndex>
|
||||
<FormHeaderLabel>
|
||||
{createMessage(WELCOME_FORM_NEWLETTER_HEADER)}
|
||||
</FormHeaderLabel>
|
||||
|
|
|
|||
|
|
@ -13,16 +13,12 @@ export const FormHeaderWrapper = styled.div`
|
|||
export const FormHeaderLabel = styled.h5`
|
||||
width: 100%;
|
||||
font-size: 20px;
|
||||
margin: 8px 0 16px;
|
||||
font-weight: 500;
|
||||
`;
|
||||
|
||||
export const FormHeaderIndex = styled.h5`
|
||||
font-size: 20px;
|
||||
font-weight: 500;
|
||||
position: absolute;
|
||||
left: -33px;
|
||||
top: -33px;
|
||||
`;
|
||||
|
||||
export const FormBodyWrapper = styled.div`
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user