Skip to content

Commit

Permalink
fix: mobile view for additional info
Browse files Browse the repository at this point in the history
- hide labels on small screens
  • Loading branch information
martinhauke committed Aug 16, 2024
1 parent f6c020c commit 24a0a2d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/components/RecipeMetaData.astro
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,11 @@ const {metaInformation, isCompactView} = Astro.props;
.value {
font-weight: bold;
}
@media screen and (max-width: 800px){
.label {
display: none;
}
}
.meta-information--compact-view {
margin: 0;
section {
Expand Down

0 comments on commit 24a0a2d

Please sign in to comment.