Skip to content

Commit

Permalink
Fix layout issue
Browse files Browse the repository at this point in the history
The natural height of the container could be larger than 100% of the viewport height, causing it to overflow and overlap with the footer text. This change allows the container to grow to its natural height if needed, and push the footer below it to avoid the overlap.
  • Loading branch information
rviscomi committed May 29, 2020
1 parent 46dffc1 commit f9ce656
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Layout/CardLayout.svelte
Expand Up @@ -52,7 +52,7 @@ limitations under the License. -->
grid-template-rows: repeat(3, 1fr);
grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
grid-gap: 20px;
height: 100%;
min-height: 100%;
}
.icon {
Expand Down

0 comments on commit f9ce656

Please sign in to comment.