Skip to content

Commit

Permalink
chore(ix): add basic responsive CSS Choice layout
Browse files Browse the repository at this point in the history
  • Loading branch information
caugner committed Feb 21, 2025
1 parent 485faa6 commit 55722d3
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions client/src/lit/interactive-example/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,11 @@ tab-wrapper {
grid-template-rows: max-content 1fr;
height: 100%;

@media (max-width: $screen-lg) {
grid-template-areas: "header" "choice" "runner";
grid-template-columns: 1fr;
}

#reset {
background-color: transparent;
border: none;
Expand Down Expand Up @@ -229,6 +234,10 @@ tab-wrapper {
padding-left: 0.25rem;
padding-right: 1.25rem;
width: 1rem;

@media (max-width: $screen-lg) {
content: "";
}
}

&.selected {
Expand Down

0 comments on commit 55722d3

Please sign in to comment.