26 lines
697 B
Vue
26 lines
697 B
Vue
<script setup>
|
|
import AppLayout from "../../../../resources/js/layouts/AppLayout.vue";
|
|
import ShadowedBox from "../../../Views/Components/ShadowedBox.vue";
|
|
</script>
|
|
|
|
<template>
|
|
<AppLayout title='Meine Nachrichten'>
|
|
<shadowed-box style="width: 95%; margin: 20px auto; padding: 20px; overflow-x: hidden;">
|
|
Diese Funktion steht aktuell nicht zur Verfügung.<br />
|
|
Bitte versuche es später noch einmal.
|
|
</shadowed-box>
|
|
</AppLayout>
|
|
</template>
|
|
|
|
<style scoped>
|
|
textarea {
|
|
width: 100%;
|
|
padding: 6px 10px;
|
|
border: 1px solid #d1d5db;
|
|
border-radius: 6px;
|
|
font-size: 0.95rem;
|
|
box-sizing: border-box;
|
|
resize: vertical;
|
|
}
|
|
</style>
|