Skip to content

Commit

Permalink
bugfix: hopefully increased ios compatibility ?????!!!!!
Browse files Browse the repository at this point in the history
  • Loading branch information
webcrawls committed Oct 9, 2024
1 parent 856e1e2 commit e8519bc
Showing 1 changed file with 7 additions and 11 deletions.
18 changes: 7 additions & 11 deletions static/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,6 @@ html {
scroll-behavior: smooth
}

* {
--debug-border: none;
}

.debug, .debug * {
/*border: var(--debug-border);*/
}
Expand All @@ -58,7 +54,7 @@ html {
overflow: hidden;
display: grid;
flex-direction: column;
grid-template-rows: min-content 1fr min-content;
grid-template-rows: min-content minmax(200px, 1fr) min-content;
}

.main-wrapper {
Expand Down Expand Up @@ -116,7 +112,7 @@ main::after {

footer {
background-color: black;
height: 100%;
/* height: 100%; */
border-top: 1px solid white;
}

Expand All @@ -125,9 +121,8 @@ footer .footer-container {
padding-inline: 1.5rem;
max-width: var(--header-footer-content-width);
width: 100%;
height: 100%;
/* height: 100%; */
margin-inline: auto;

display: flex;
flex-direction: row;
justify-content: space-between;
Expand All @@ -137,7 +132,6 @@ footer .footer-container {
footer .footer-wrapper {
width: 100%;
display: flex;
height: 100%;
justify-content: space-between;
flex-direction: column;
}
Expand All @@ -150,16 +144,18 @@ footer .section-group {
.image-bin {
display: flex;
flex-direction: column;
height: 100%;
align-items: center;
}

.image-bin a {
height: 100%;
}

.image-bin img {
width: 100px;
opacity: 0.7;
transition: opacity 0.25s ease;
object-fit: contain;
height: min-content;
}

.image-bin img:hover {
Expand Down

0 comments on commit e8519bc

Please sign in to comment.