keanu-weblite/src/components/NoHistoryRoomWelcomeHeader.vue
N-Pex b1d47748c8 Use SASS module system
Get rid of all the SASS warnings/errors when building.
2025-05-19 10:25:46 +02:00

19 lines
No EOL
377 B
Vue

<template>
<div class="text-center">
<v-icon size="27" class="shield">$vuetify.icons.ic_security-shield</v-icon>
<div>{{ $t("room_welcome.no_past_messages") }}</div>
</div>
</template>
<script>
export default {
name: "NoHistoryRoomWelcomeHeader",
};
</script>
<style lang="scss">
@use "@/assets/css/chat.scss" as *;
.shield {
margin-bottom: 12px;
}
</style>