diff --git a/Front/vue-unilife/src/assets/images/logo.png b/Front/vue-unilife/src/assets/images/logo.png
new file mode 100644
index 0000000..59faad2
Binary files /dev/null and b/Front/vue-unilife/src/assets/images/logo.png differ
diff --git a/Front/vue-unilife/src/components/HeaderBar.vue b/Front/vue-unilife/src/components/HeaderBar.vue
index 911de5c..6736116 100644
--- a/Front/vue-unilife/src/components/HeaderBar.vue
+++ b/Front/vue-unilife/src/components/HeaderBar.vue
@@ -9,6 +9,7 @@
@@ -75,10 +81,14 @@
.left-icons,
.right-section {
+ flex:7;
padding:50px;
display: flex;
align-items: center;
}
+ .right-section{
+ justify-content: flex-end;
+ }
.icon-btn {
margin: 0 10px;
@@ -98,4 +108,14 @@
color: #303133;
cursor: pointer;
}
+
+ .logo
+ {
+ flex:1;
+ width: 120px;
+ height: 120px;
+ margin-left: 20px;
+ border-radius: 50%;
+ object-fit: cover;
+ }
diff --git a/Front/vue-unilife/src/components/MarkdownRender.vue b/Front/vue-unilife/src/components/MarkdownRender.vue
index ee69758..34aa383 100644
--- a/Front/vue-unilife/src/components/MarkdownRender.vue
+++ b/Front/vue-unilife/src/components/MarkdownRender.vue
@@ -38,7 +38,7 @@ async function renderMarkdown() {
watch(() => props.content, renderMarkdown, { immediate: true })
-