Skip to content

Commit

Permalink
fix controls on mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
ashconnell committed May 29, 2024
1 parent 138aec2 commit d7662b8
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,8 @@
border-radius: 20px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
transition: all 0.3s ease-out;
display: flex;
flex-direction: column;
}
.appm-details.visible {
transform: translateY(0%);
Expand Down Expand Up @@ -260,6 +262,8 @@
}
.details {
flex: 1;
display: flex;
flex-direction: column;
}
.details-head {
display: flex;
Expand Down Expand Up @@ -307,6 +311,7 @@
margin-left: 8px;
}
.details-body {
flex: 1;
padding: 0 20px 20px;
}
.details-preview {
Expand Down Expand Up @@ -352,12 +357,10 @@
display: flex;
justify-content: center;
background: white;
position: fixed;
bottom: 0;
left: 0;
right: 0;
padding: 16px;
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.6);
position: sticky;
bottom: 0;
}
.details-foot-btn {
flex-shrink: 0;
Expand Down

0 comments on commit d7662b8

Please sign in to comment.