Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
antonkoetzler committed Nov 7, 2024
1 parent 09f77c7 commit d92da03
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion index.css
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,9 @@ main {
display: flex;
flex-direction: column;
gap: 50px;
min-width: 300px;
max-width: 600px;
align-self: center;
}

/* App bar */
Expand Down Expand Up @@ -187,7 +190,9 @@ a:visited {
}

.horizontal-divider {
width: 40%;
width: 50%;
min-width: 100px;
max-width: 300px;
height: 1px;
background-color: var(--secondary-color);
align-self: center;
Expand Down Expand Up @@ -237,3 +242,9 @@ a:visited {
content: 'AKF';
}
}

@media screen and (max-width: 300px) {
header>h1:before {
content: '';
}
}

0 comments on commit d92da03

Please sign in to comment.