mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-20 03:12:15 +00:00
refactor(editor): Move editor-ui and design-system to frontend dir (no-changelog) (#13564)
This commit is contained in:
29
packages/frontend/editor-ui/src/views/LoadingView.vue
Normal file
29
packages/frontend/editor-ui/src/views/LoadingView.vue
Normal file
@@ -0,0 +1,29 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user