From 2394d5d8f0704dd94b4151a9c4483610449bdd88 Mon Sep 17 00:00:00 2001 From: Yangshun Tay Date: Fri, 29 Apr 2022 16:28:27 +0800 Subject: [PATCH] website: increase horizontal spacing around docs content --- contents/coding-interview-prep.md | 4 ++-- website/src/theme/DocItem/styles.module.css | 5 +++++ 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/contents/coding-interview-prep.md b/contents/coding-interview-prep.md index 822677bb..a7c9d4c4 100644 --- a/contents/coding-interview-prep.md +++ b/contents/coding-interview-prep.md @@ -118,7 +118,7 @@ Using this guide to accompany practice ensures that you cultivate good habits an #### Algorithms study cheatsheets for coding interviews -These are actually the notes I personally collated for my own coding interview preparation. I have organized them into 1-pagers of the best study resources, best LeetCode questions to practice, and must-remembers (tips, corner cases) for every data structure and algorithm. They ensure that you internalize the most important concepts and get the most out of your preparation. +These are actually the notes I personally collated for my own coding interview preparation. I have organized them into 1-pagers of the best study resources, best LeetCode questions to practice, and must-remembers (tips, corner cases) for every data structure and algorithm. They ensure that you internalize the most important concepts and get the most out of your preparation. [Check them out](./algorithms/study-cheatsheet.md). ### 5. Prepare a good self introduction and final questions {#prepare-self-introduction} @@ -130,7 +130,7 @@ For the best software self introduction samples and tips, check out this [self i Coding right in front of your interviewer can be a nerve-wracking experience especially if you have never done it before - which is why getting hands-on experience is so important. -[interviewing.io](https://iio.sh/r/DMCa) is currently the best mock technical interview resource in the market currently. It allows you to book mock coding interviews with real Google and Facebook engineers, albeit anonymously. You could even book interviews for specific roles like Mobile, Front End, Engineering Management. Even better - if you want to have an easier transition into real world coding interview - you could view recorded interviews and see what phone interviews are like. +[interviewing.io](https://iio.sh/r/DMCa) is currently the best mock technical interview resource in the market. It allows you to book mock coding interviews with real Google and Facebook engineers, albeit anonymously. You could even book interviews for specific roles like Mobile, Front End, Engineering Management. Even better - if you want to have an easier transition into real world coding interview - you could view recorded interviews and see what phone interviews are like. Moreover, if you were to do very well on your mock interviews, you will be able to unlock the "jobs page" which allows you to book interviews directly with top companies like Uber, Lyft, Quora, Asana and more. I've used [interviewing.io](https://iio.sh/r/DMCa) both as an interviewer and an interviewee and found the experience to be excellent. diff --git a/website/src/theme/DocItem/styles.module.css b/website/src/theme/DocItem/styles.module.css index 7828ec62..3c318c49 100644 --- a/website/src/theme/DocItem/styles.module.css +++ b/website/src/theme/DocItem/styles.module.css @@ -5,6 +5,11 @@ * LICENSE file in the root directory of this source tree. */ +@media (min-width: 768px) { + .docItemContainer { + padding: 0 3rem; + } +} .docItemContainer header + *, .docItemContainer article > *:first-child { margin-top: 0;