Skip to content

Commit

Permalink
Fix iframe container overflow style
Browse files Browse the repository at this point in the history
  • Loading branch information
bogiii committed Oct 8, 2024
1 parent 27272ec commit df06702
Showing 1 changed file with 16 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,16 +71,6 @@
justify-content: space-between;
}

.calendly-details,
.calendly-widget {
flex: 1;
max-width: 50%;
}

.calendly-details {
border-inline-end: solid 1px var(--studio-gray-5);
}

.calendly-details__header {
display: flex;
justify-content: center;
Expand Down Expand Up @@ -115,9 +105,22 @@

}

.calendly-details,
.calendly-widget {
flex: 1;
width: 50%;
}

.calendly-details {
border-inline-end: solid 1px var(--studio-gray-5);

@media (max-width: 768px) {
display: none;
}
}

.calendly-widget {
max-width: 415px;
height: 500px;
margin: 1px;
max-height: 100%;
overflow: scroll;
}
}

0 comments on commit df06702

Please sign in to comment.