Skip to content

Commit

Permalink
Fixed Overflow Problem
Browse files Browse the repository at this point in the history
  • Loading branch information
fabulous-fabio committed Jun 1, 2024
1 parent bdf55c3 commit fac350b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ header {
grid-row: 2;
position: relative;
left: -2em;
width: calc(100% + 2em);
width: calc(100% - 10em);
padding-left: 1em;
padding-right: calc(200px + 4em);
}
Expand Down Expand Up @@ -583,12 +583,13 @@ header {
.skills__programming {
display: grid;
grid-template-areas:
"objekt object object object object";
"objekt object object object";
grid-template-columns: repeat(5, 20%);
grid-column-gap: 1em;
grid-row-gap: 4em;
min-height: 870px;
height: auto;
max-width: 100%;
}
.skill {
padding: 10px;
Expand Down
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ <h2 class="section__title section__title--about">Drinking Gun</h2>




<!--
<section class="skills">
<h1 class="section__title section__title--intro">Skillset</h1>
<div class="skills__programming">
Expand Down Expand Up @@ -391,7 +391,7 @@ <h3>C/C++</h3>
</div>
</div>
</div>
</section>
</section>-->


<section id="transcript" class="transcript">
Expand Down

0 comments on commit fac350b

Please sign in to comment.