Skip to content

Commit

Permalink
Fix responsive layout
Browse files Browse the repository at this point in the history
  • Loading branch information
mlqn committed Oct 10, 2023
1 parent c817c50 commit f7aedb1
Showing 1 changed file with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
border-radius: 6px;
box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.05);
display: flex;
flex-direction: column;
padding: var(--fds-spacing-10);
position: relative;
gap: var(--fds-spacing-10);
Expand All @@ -63,6 +64,7 @@
.divider {
background-color: #efefef;
border: none;
display: none;
height: 2px;
opacity: 0.5;
width: 100%;
Expand All @@ -75,3 +77,13 @@
border-radius: 6px;
height: 500px;
}

@media (min-width: 1200px) {
.content {
flex-direction: row;
}

.divider {
display: block;
}
}

0 comments on commit f7aedb1

Please sign in to comment.