Skip to content

Commit

Permalink
minor formatting adjustements
Browse files Browse the repository at this point in the history
  • Loading branch information
patricebender committed Apr 29, 2024
1 parent 37b0a0d commit 705d2ea
Showing 1 changed file with 17 additions and 12 deletions.
29 changes: 17 additions & 12 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<h2>Hey there! 👋</h2>
<p class="introduction">
I'm Patrice, a passionate software engineer 💻<br />
As a member of the <a href="https://www.npmjs.com/package/@sap/cds-compiler" arget="_blank" rel="noopener noreferrer">cds-compiler</a> team at SAP, I help to build the
<br />As a member of the <a href="https://www.npmjs.com/package/@sap/cds-compiler" arget="_blank" rel="noopener noreferrer">cds-compiler</a> team at SAP, I help to build the
backbone of the <a href="https://cap.cloud.sap/docs/" target="_blank" rel="noopener noreferrer">SAP Cloud
Application Programming (CAP) Model</a>.
Besides my duty in the cds-compiler team, I'm particularly excited about our work on the open source <a
Expand Down Expand Up @@ -111,44 +111,51 @@ body {
padding: 0;
margin: 0;
height: 100%;
/* Ensures that the body takes full viewport height */
width: 100%;
/* Ensures that the body takes full viewport width */
font-family: 'Roboto', sans-serif;
text-align: center;
}
/* Ensure #app takes full available height */
#app {
min-height: 100vh;
/* vh units ensure the element takes at least the full height of the viewport */
display: flex;
flex-direction: column;
text-align: center;
}
body {
font-family: 'Roboto', sans-serif;
}
.content {
flex: 1;
margin: 0 auto;
max-width: 800px;
padding: 0 10px;
padding-bottom: 3.5em;
/* Adjust based on the actual height of your footer */
display: flex;
flex-direction: column;
justify-content: center;
}
.introduction {
font-size: 1.3em;
line-height: 1.5;
margin: 0;
}
.profile-picture {
max-width: 200px;
max-width: 250px;
border-radius: 50%;
animation: rotateImageVertically 1.5s ease-in-out;
margin-top: 1em;
display: block; /* Makes the img a block-level element */
margin-left: auto; /* Auto margin on both sides will center the image */
margin-right: auto;
}
/* slightly reduces size for mobile devices */
@media (max-width: 600px) {
.profile-picture {
max-width: 200px;
}
}
footer {
Expand All @@ -167,9 +174,7 @@ footer {
text-align: center;
z-index: 1000;
/* Ensures the footer stays above other content */
height: 4em;
;
}
Expand Down

0 comments on commit 705d2ea

Please sign in to comment.