mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-09 20:07:31 -08:00
5ca2148c7e
* ⚡ Adjust `format` script * 🔥 Remove exemption for `editor-ui` * 🎨 Prettify * 👕 Fix lint
30 lines
475 B
Vue
30 lines
475 B
Vue
<template>
|
|
<div :class="$style.wrapper" data-test-id="node-view-loader">
|
|
<div :class="$style.spinner">
|
|
<n8n-spinner />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss" module>
|
|
.wrapper {
|
|
width: 100%;
|
|
height: 100%;
|
|
position: absolute;
|
|
background-color: var(--color-background-light);
|
|
}
|
|
|
|
.spinner {
|
|
margin-bottom: var(--spacing-l);
|
|
position: absolute;
|
|
left: 50%;
|
|
top: 30%;
|
|
|
|
* {
|
|
color: var(--color-primary);
|
|
min-height: 40px;
|
|
min-width: 40px;
|
|
}
|
|
}
|
|
</style>
|