mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-14 16:51:33 +10:00
added Nunito font option, removed few others
This commit is contained in:
@ -3,11 +3,10 @@ import TextField from '../../../shared/TextField';
|
|||||||
|
|
||||||
const fontOptions = [
|
const fontOptions = [
|
||||||
'Lato',
|
'Lato',
|
||||||
'Merriweather',
|
|
||||||
'Montserrat',
|
'Montserrat',
|
||||||
|
'Nunito',
|
||||||
'Open Sans',
|
'Open Sans',
|
||||||
'Raleway',
|
'Raleway',
|
||||||
'Roboto',
|
|
||||||
'Rubik',
|
'Rubik',
|
||||||
'Source Sans Pro',
|
'Source Sans Pro',
|
||||||
'Titillium Web',
|
'Titillium Web',
|
||||||
|
|||||||
@ -1,13 +1,12 @@
|
|||||||
/* Google Fonts */
|
/* Google Fonts */
|
||||||
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
|
|
||||||
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');
|
|
||||||
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');
|
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');
|
||||||
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;600;700&display=swap');
|
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap');
|
||||||
|
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');
|
||||||
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700&display=swap');
|
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700&display=swap');
|
||||||
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&display=swap');
|
|
||||||
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;700&display=swap');
|
|
||||||
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500&display=swap');
|
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500&display=swap');
|
||||||
|
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;600;700&display=swap');
|
||||||
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@400;600;700&display=swap');
|
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@400;600;700&display=swap');
|
||||||
|
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;700&display=swap');
|
||||||
|
|
||||||
html,
|
html,
|
||||||
body {
|
body {
|
||||||
|
|||||||
@ -102,7 +102,7 @@ const Gengar = () => {
|
|||||||
|
|
||||||
const Education = () =>
|
const Education = () =>
|
||||||
data.education.enable && (
|
data.education.enable && (
|
||||||
<div className="mb-8">
|
<div className="mb-6">
|
||||||
<Heading title={data.education.heading} />
|
<Heading title={data.education.heading} />
|
||||||
{data.education.items.map(EducationItem)}
|
{data.education.items.map(EducationItem)}
|
||||||
</div>
|
</div>
|
||||||
@ -118,7 +118,7 @@ const Gengar = () => {
|
|||||||
|
|
||||||
const Certifications = () =>
|
const Certifications = () =>
|
||||||
data.certifications.enable && (
|
data.certifications.enable && (
|
||||||
<div className="mb-8">
|
<div className="mb-6">
|
||||||
<Heading title={data.certifications.heading} />
|
<Heading title={data.certifications.heading} />
|
||||||
{data.certifications.items.map(CertificationItem)}
|
{data.certifications.items.map(CertificationItem)}
|
||||||
</div>
|
</div>
|
||||||
@ -134,7 +134,7 @@ const Gengar = () => {
|
|||||||
|
|
||||||
const Awards = () =>
|
const Awards = () =>
|
||||||
data.awards.enable && (
|
data.awards.enable && (
|
||||||
<div className="mb-8">
|
<div className="mb-6">
|
||||||
<Heading title={data.awards.heading} />
|
<Heading title={data.awards.heading} />
|
||||||
{data.awards.items.map(AwardItem)}
|
{data.awards.items.map(AwardItem)}
|
||||||
</div>
|
</div>
|
||||||
@ -175,7 +175,7 @@ const Gengar = () => {
|
|||||||
|
|
||||||
const Work = () =>
|
const Work = () =>
|
||||||
data.work.enable && (
|
data.work.enable && (
|
||||||
<div className="mb-8">
|
<div className="mb-6">
|
||||||
<Heading title={data.work.heading} />
|
<Heading title={data.work.heading} />
|
||||||
{data.work.items.map(WorkItem)}
|
{data.work.items.map(WorkItem)}
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user