mirror of
https://github.com/xitanggg/open-resume
synced 2024-11-03 09:19:21 +01:00
Fix mobile web layout in resume-parser
This commit is contained in:
parent
3d6f3f8139
commit
2aab789543
@ -10,7 +10,7 @@ Official site: [https://open-resume.com](https://open-resume.com)
|
||||
|
||||
OpenResume's resume builder allows user to create a modern professional resume easily.
|
||||
|
||||
![Resume Builder Demo](https://i.ibb.co/TrB01tV/resume-builder-demo.gif)
|
||||
![Resume Builder Demo](https://i.ibb.co/jzcrrt8/resume-builder-demo-optimize.gif)
|
||||
|
||||
It has 5 Core Features:
|
||||
| <div style="width:285px">**Feature**</div> | **Description** |
|
||||
|
@ -39,7 +39,6 @@ export const ResumeParserAlgorithmArticle = ({
|
||||
if (item.hasEOL) {
|
||||
content = `${content} NewLine`;
|
||||
}
|
||||
content += ` Font=${item.fontName}`;
|
||||
return content;
|
||||
};
|
||||
const step1TextItemsTable = [
|
||||
@ -75,7 +74,7 @@ export const ResumeParserAlgorithmArticle = ({
|
||||
{scores
|
||||
.sort((a, b) => b.score - a.score)
|
||||
.map((item, idx) => (
|
||||
<span key={idx}>
|
||||
<span key={idx} className="break-all">
|
||||
<Badge>{item.score}</Badge> {item.text}
|
||||
<br />
|
||||
</span>
|
||||
@ -178,7 +177,7 @@ export const ResumeParserAlgorithmArticle = ({
|
||||
</mrow>
|
||||
</math>`,
|
||||
}}
|
||||
className="my-2 block text-left"
|
||||
className="my-2 block text-left text-base"
|
||||
/>
|
||||
The average typical character width is calculated by dividing the sum of
|
||||
all text items' widths by the total number characters of the text items
|
||||
|
Loading…
Reference in New Issue
Block a user