Completed Ordered List Function

added Ordered List Function to Editor and Dynamic Canva.
This commit is contained in:
Sanjeev Kumar 2023-08-22 01:04:24 +05:30
parent 0bd6c06987
commit 88d7d516e3
4 changed files with 21 additions and 3 deletions

View file

@ -409,6 +409,14 @@ export const EditorContentWrapper = styled.div`
display: block;
outline: 0px solid transparent;
}
ul, ol {
padding: 0 1rem;
padding-left: 10px;
list-style-type: decimal;
}
`;
export default Editor;