30 lines
567 B
Vue
30 lines
567 B
Vue
<template>
|
|
<div :class="store.mobileOpenState ? 'left hidden' : 'left'">
|
|
<Message />
|
|
<SocialLinks />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { mainStore } from "@/store";
|
|
import Message from "@/components/Message.vue";
|
|
import SocialLinks from "@/components/SocialLinks.vue";
|
|
const store = mainStore();
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.left {
|
|
// flex: 1 0 0%;
|
|
width: 50%;
|
|
margin-right: 10px;
|
|
transform: translateY(20px);
|
|
&.hidden {
|
|
display: none;
|
|
}
|
|
@media (max-width: 720px) {
|
|
margin-right: 0;
|
|
width: 100%;
|
|
}
|
|
}
|
|
</style>
|