Skip to content

Commit

Permalink
feat(client): improve ship page on small screens
Browse files Browse the repository at this point in the history
  • Loading branch information
clemlatz committed Feb 25, 2024
1 parent daa6efa commit 84f267c
Showing 1 changed file with 16 additions and 11 deletions.
27 changes: 16 additions & 11 deletions client/app/styles/app.css
Original file line number Diff line number Diff line change
@@ -1,23 +1,28 @@
/* Ember supports plain CSS out of the box. More info: https://cli.emberjs.com/release/advanced-use/stylesheets/ */

dl {
display: flex;
flex-wrap: wrap;
}

dl dt {
background: lightgray;
padding: 4px;
padding-right: 8px;
margin-bottom: 4px;
text-align: right;
width: 20%;
}

dl dd {
padding: 4px;
padding-left: 8px;
width: 80%;
@media(min-width: 768px) {
dl {
display: flex;
flex-wrap: wrap;
}

dl dt {
text-align: right;
width: 25%;
}

dl dd {
padding: 4px;
padding-left: 8px;
width: 75%;
}
}

/* Position */
Expand Down

0 comments on commit 84f267c

Please sign in to comment.