diff --git a/.github/workflows/label_merge_conflicts.yml b/.github/workflows/label_merge_conflicts.yml new file mode 100644 index 00000000..b45c699e --- /dev/null +++ b/.github/workflows/label_merge_conflicts.yml @@ -0,0 +1,13 @@ +name: 'Check for merge conflicts' +on: + push: + branches: + - master +jobs: + triage: + runs-on: ubuntu-latest + steps: + - uses: mschilde/auto-label-merge-conflicts@master + with: + CONFLICT_LABEL_NAME: 'merge-conflict' + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/README.md b/README.md index 0322d0c2..bb12df5e 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,7 @@ Add GIFs of the entire web app
-Please check out our [contribution guidelines](./Contributing.MD) +Please check out our [contribution guidelines](./CONTRIBUTING.md) ## The geeks🤓 behind this initiative: diff --git a/src/pages/Editor/containers/editContext.js b/src/pages/Editor/containers/editContext.js index ff312b53..ce0088c8 100644 --- a/src/pages/Editor/containers/editContext.js +++ b/src/pages/Editor/containers/editContext.js @@ -19,8 +19,9 @@ const EditContextProvider = props => { const [headValues, setHeadValues] = useState({ headSize: null, - headTop: null, - headLeft: 0, + headTop: 20, + headLeft: 20, + headRight: 20, headLine: null, headFont: "HomemadeApple", headColor: "black", @@ -29,8 +30,9 @@ const EditContextProvider = props => { }); const [bodyValues, setBodyValues] = useState({ bodySize: null, - bodyTop: null, - bodyLeft: 0, + bodyTop: 20, + bodyLeft: 20, + bodyRight: 20, bodyLine: null, bodyFont: "HomemadeApple", bodyColor: "black", diff --git a/src/pages/Editor/sections/OutputComponent/Output.js b/src/pages/Editor/sections/OutputComponent/Output.js index 19ec224b..3f53d924 100644 --- a/src/pages/Editor/sections/OutputComponent/Output.js +++ b/src/pages/Editor/sections/OutputComponent/Output.js @@ -31,6 +31,7 @@ const OutputComponent = () => { style={{ fontSize: `${editContext.headValues.headSize}px`, paddingTop: `${editContext.headValues.headTop}px`, + paddingRight: `${Number(editContext.headValues.headRight) + 3}px`, paddingLeft: `${Number(editContext.headValues.headLeft) + 3}px`, lineHeight: `${editContext.headValues.headLine}`, fontFamily: `${editContext.headValues.headFont}`, @@ -49,6 +50,7 @@ const OutputComponent = () => { style={{ fontSize: `${editContext.bodyValues.bodySize}px`, paddingTop: `${editContext.bodyValues.bodyTop}px`, + paddingRight: `${Number(editContext.bodyValues.bodyRight) + 3}px`, paddingLeft: `${Number(editContext.bodyValues.bodyLeft) + 3}px`, lineHeight: `${editContext.bodyValues.bodyLine}`, fontFamily: `${editContext.bodyValues.bodyFont}`, diff --git a/src/pages/Home/sections/About/About.module.css b/src/pages/Home/sections/About/About.module.css index 7e654ce5..26380b5c 100644 --- a/src/pages/Home/sections/About/About.module.css +++ b/src/pages/Home/sections/About/About.module.css @@ -12,9 +12,9 @@ @import url(https://fonts.googleapis.com/css?family=Droid+Sans); .title { - font-family: "Samarkan Normal"; + font-family: 'Poppins', sans-serif; color: #4e89ae; - font-size: 4rem; + font-size: 3rem; font-weight: bold; text-shadow: 1px 1px 3px #000000; } diff --git a/src/pages/Home/sections/Contact/ContactUs.jsx b/src/pages/Home/sections/Contact/ContactUs.jsx index 87a0623e..2a6aaef4 100644 --- a/src/pages/Home/sections/Contact/ContactUs.jsx +++ b/src/pages/Home/sections/Contact/ContactUs.jsx @@ -17,7 +17,7 @@ function ContactUs() { description={metaData.contact.description} keywords={metaData.contact.keywords} /> -Get in Touch