PluginProbe
Hostinger Tools / 3.0.61
Hostinger Tools v3.0.61
3.0.77 3.0.76 3.0.75 3.0.74 3.0.73 3.0.72 3.0.71 3.0.70 3.0.69 3.0.68 3.0.67 3.0.66 1.8.1 1.8.2 1.8.3 1.9.1 1.9.4 1.9.5 1.9.6 1.9.7 1.9.8 1.9.9 2.0.0 2.0.1 2.0.4 All 108 releases
hostinger / vue-frontend / src / components / Notice.vue

Notice.vue in Hostinger Tools 3.0.61, at vue-frontend/src/components/Notice.vue

31 lines 621 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <script setup lang="ts">
2
3 import Icon from "@/components/Icon/Icon.vue";
4
5 type Props = {
6 text: string;
7 };
8 const props = defineProps<Props>();
9
10 </script>
11 <template>
12 <div class="hostinger-notice d-flex align-items-center w-100 mt-3">
13 <Icon
14 name="icon-info"
15 color="gray-dark"
16 />
17 <p class="text-body-3">{{props?.text}}</p>
18 </div>
19 </template>
20
21 <style lang="scss" scoped>
22 .hostinger-notice {
23 background: var(--gray-light);
24 color: var(--gray-dark);
25 border: 1px solid var(--gray-border);
26 border-radius: 12px;
27 padding: 12px 16px;
28 font-size: var(--font-size-sm);
29 gap: 1em;
30 }
31 </style>