Merge pull request #15 from AmruthPillai/bugfix/indentation

Bugfix: Indentation & Castform
This commit is contained in:
Amruth Pillai
2020-03-28 21:03:07 +05:30
committed by GitHub
2 changed files with 19 additions and 13 deletions

View File

@ -17,9 +17,10 @@ body {
font-family: 'Montserrat', sans-serif;
}
ul {
ul li {
list-style: disc;
list-style-position: inside !important;
margin-left: 1em;
padding: 0;
}
@media screen {

View File

@ -8,6 +8,21 @@ const Castform = () => {
const { state } = context;
const { data, theme } = state;
const Photo = () =>
data.profile.photo !== '' && (
<div className="mt-5 ml-5">
<img
className="w-32 h-32 rounded-full"
style={{
borderWidth: 6,
borderColor: theme.colors.background,
}}
src={data.profile.photo}
alt="Profile Photograph"
/>
</div>
);
const PersonalInformation = () => (
<div className="pt-5 px-5">
<h1 className="text-2xl font-bold">
@ -249,17 +264,7 @@ const Castform = () => {
backgroundColor: theme.colors.accent,
}}
>
<div className="mt-5 ml-5">
<img
className="w-32 h-32 rounded-full"
style={{
borderWidth: 6,
borderColor: theme.colors.background,
}}
src={data.profile.photo}
alt="Profile Photograph"
/>
</div>
<Photo />
<PersonalInformation />
<ContactInformation />
<Skills />