order view responsiveness
This commit is contained in:
22
src/components/Breakpoints.vue
Normal file
22
src/components/Breakpoints.vue
Normal file
@@ -0,0 +1,22 @@
|
||||
<template>
|
||||
<div>
|
||||
<span class="">xs </span>
|
||||
<span class="d-none d-sm-inline">sm </span>
|
||||
<span class="d-none d-md-inline">md </span>
|
||||
<span class="d-none d-lg-inline">lg </span>
|
||||
<span class="d-none d-xl-inline">xl </span>
|
||||
<span class="d-none d-xxl-inline">xxl </span>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import {useStore} from "@/store/store";
|
||||
|
||||
const s = useStore()
|
||||
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@use "src/styles/vars" as *;
|
||||
|
||||
</style>
|
||||
Reference in New Issue
Block a user