diff --git a/packages/editor-ui/src/components/MainSidebar.vue b/packages/editor-ui/src/components/MainSidebar.vue index d4614d1bb7..9242b10765 100644 --- a/packages/editor-ui/src/components/MainSidebar.vue +++ b/packages/editor-ui/src/components/MainSidebar.vue @@ -129,7 +129,14 @@
- +
+
+ +
+
+
+
+
{{nextVersions.length}} update{{nextVersions.length > 1? 's': ''}} available
@@ -605,11 +612,46 @@ a.logo { color: $--sidebar-active-color; } - i:after { - content: "\2022"; - color: $--sidebar-active-color; - font-size: 30px; - position: absolute; + .gift-container { + display: flex; + justify-content: center; + align-items: center; + height: 100%; + width: 100%; + } + + .gift-icon { + width: 19px; + height: 16.8px; + display: flex; + position: relative; + + svg { + font-size: 16.8px; + line-height: 19px; + } + + .notification { + height: 6px; + width: 6px; + border-radius: 50%; + color: $--sidebar-active-color; + position: absolute; + background-color: #fff; + z-index: 9999; + left: 75%; + display: flex; + align-items: center; + justify-content: center; + top: -1px; + + div { + height: 4px; + width: 4px; + background-color: $--color-primary; + border-radius: 50%; + } + } } }