price constraints working
This commit is contained in:
@@ -1,12 +1,15 @@
|
||||
<template>
|
||||
<!-- tablets and desktops get a card outline -->
|
||||
<v-card class="d-none d-sm-block phone-card" :elevation="4">
|
||||
<slot/>
|
||||
</v-card>
|
||||
<!-- phones use the entire screen -->
|
||||
<v-container class="d-sm-none">
|
||||
<slot/>
|
||||
</v-container>
|
||||
<!-- todo use javascript media breakpoint instead of display classes so we dont double-render the slot -->
|
||||
<div>
|
||||
<!-- tablets and desktops get a card outline -->
|
||||
<v-card class="d-none d-sm-block phone-card" :elevation="4">
|
||||
<slot/>
|
||||
</v-card>
|
||||
<!-- phones use the entire screen -->
|
||||
<v-container class="d-sm-none">
|
||||
<slot/>
|
||||
</v-container>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
|
||||
Reference in New Issue
Block a user