mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 18:41:14 +00:00
refactor(editor): Move editor-ui and design-system to frontend dir (no-changelog) (#13564)
This commit is contained in:
@@ -0,0 +1,40 @@
|
||||
<template>
|
||||
<div :class="$style['gift-icon']">
|
||||
<font-awesome-icon icon="gift" />
|
||||
<div :class="$style['notification']">
|
||||
<div></div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style lang="scss" module>
|
||||
.gift-icon {
|
||||
display: flex;
|
||||
position: relative;
|
||||
|
||||
svg {
|
||||
margin-right: 0 !important;
|
||||
}
|
||||
|
||||
.notification {
|
||||
height: 0.47em;
|
||||
width: 0.47em;
|
||||
border-radius: 50%;
|
||||
color: $gift-notification-active-color;
|
||||
position: absolute;
|
||||
background-color: $gift-notification-outer-color;
|
||||
right: -0.3em;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
top: -0.148em;
|
||||
|
||||
div {
|
||||
height: 0.36em;
|
||||
width: 0.36em;
|
||||
background-color: $gift-notification-inner-color;
|
||||
border-radius: 50%;
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user