Skip to content

Commit 0b996c3

Browse files
committed
make recommendation cards less thin on smaller screen
1 parent 29ef815 commit 0b996c3

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

frontend/src/components/app/recommendations/RecommendationCard.vue

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,13 @@ export default {
7272
<style scoped>
7373
.recommendation-card {
7474
/*width: 24rem;*/
75-
height: 32rem;
75+
height: 24rem;
7676
box-shadow: inset 0 -8rem 1rem rgba(0, 0, 0, 0.3);
7777
}
78+
79+
@screen lg {
80+
.recommendation-card {
81+
height:32rem;
82+
}
83+
}
7884
</style>

0 commit comments

Comments
 (0)