mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-13 00:03:27 +10:00
Merge pull request #15 from AmruthPillai/bugfix/indentation
Bugfix: Indentation & Castform
This commit is contained in:
@ -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 {
|
||||
|
||||
@ -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 />
|
||||
|
||||
Reference in New Issue
Block a user