summaryrefslogtreecommitdiff
path: root/meta-ibs/meta-cp2-5422/recipes-phosphor/webui/webui-vue/0001-Set-login-brand.patch
blob: 25c894531b6ae037772d9ccc3985e5e5f9ce0487 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
From 244844b723c7e3f11dd5ec217c60ae48231c273c Mon Sep 17 00:00:00 2001
From: "Andrey V.Kosteltsev" <AKosteltsev@IBS.RU>
Date: Fri, 10 Jun 2022 07:51:39 +0300
Subject: [PATCH 1/2] Set login brand

---
 src/layouts/LoginLayout.vue | 25 +++++++++++++++++++------
 1 file changed, 19 insertions(+), 6 deletions(-)

diff --git a/src/layouts/LoginLayout.vue b/src/layouts/LoginLayout.vue
index cdff204..a26a819 100644
--- a/src/layouts/LoginLayout.vue
+++ b/src/layouts/LoginLayout.vue
@@ -2,10 +2,17 @@
   <main>
     <div class="login-container">
       <div class="login-main">
+        <div class="login-main__logo-vector">
+          <img
+            height="100%"
+            src="@/assets/images/login-main-vector.svg"
+            alt="SILA"
+          />
+        </div>
         <div>
           <div class="login-brand mb-5">
             <img
-              width="90px"
+              width="60%"
               src="@/assets/images/login-company-logo.svg"
               :alt="altLogo"
             />
@@ -22,8 +29,8 @@
         </div>
         <div class="login-aside__logo-bmc">
           <img
-            height="60px"
-            src="@/assets/images/built-on-openbmc-logo.svg"
+            height="32px"
+            src="@/assets/images/login-aside-vector.svg"
             alt="Built on OpenBMC"
           />
         </div>
@@ -50,7 +57,6 @@ export default {
   display: flex;
   flex-direction: column;
   gap: $spacer * 2;
-  max-width: 1400px;
   min-width: 320px;
   min-height: 100vh;
   justify-content: space-around;
@@ -76,6 +82,13 @@ export default {
   }
 }
 
+.login-main__logo-vector {
+  position: absolute;
+  top: 0;
+  left: 0;
+  height: $spacer * 3;
+}
+
 .login-form {
   @include media-breakpoint-up('md') {
     max-width: 360px;
@@ -88,11 +101,11 @@ export default {
   justify-content: flex-end;
   gap: $spacer * 1.5;
   margin-right: $spacer * 3;
-  margin-bottom: $spacer;
+  margin-bottom: $spacer * 3;
 
   @include media-breakpoint-up('md') {
     min-height: 100vh;
-    padding-bottom: $spacer;
+    padding-bottom: $spacer * 3;
     flex: 1 1 25%;
     margin-bottom: 0;
   }
-- 
2.35.1