2022-08-05 16:52:34 +00:00
|
|
|
<template>
|
|
|
|
<div class="alert__container">
|
|
|
|
<div class="alert__box">
|
|
|
|
<slot />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup>
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
@import '~/assets/css/components';
|
|
|
|
|
|
|
|
.alert {
|
|
|
|
&__container {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
display: flex;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2022-08-11 18:16:17 +00:00
|
|
|
z-index: 100;
|
2022-08-05 16:52:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&__box {
|
|
|
|
width: auto;
|
|
|
|
margin: 2em auto auto auto;
|
|
|
|
padding: 2em;
|
|
|
|
border: $alert-border;
|
|
|
|
border-radius: 10px;
|
|
|
|
background-color: $alert-background-color;
|
|
|
|
font-size: 24px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|