Skip to content

Commit 0daffd8

Browse files
committed
fixd basic styling
1 parent 2f1ec6c commit 0daffd8

File tree

2 files changed

+30
-28
lines changed

2 files changed

+30
-28
lines changed

src/App.vue

Lines changed: 18 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -94,49 +94,45 @@
9494
</b-nav-item>
9595

9696
<b-nav-item v-if="parseAuthToken.isTwoFactorEnabled == false">
97-
<button class="btn btn-link" type="button" @click="$router.push('mfa')" style="color: grey">
98-
<span class="spinner-grow spinner-grow-sm text-danger" role="status" aria-hidden="true"></span>
99-
<span class="visually-hidden"> Setup MFA</span>
100-
</button>
97+
98+
<b-button variant="outline-danger" pill @click="$router.push('mfa')" size="sm" style="color:grey">
99+
<span class="spinner-grow spinner-grow-sm"></span>
100+
<span class="mx-1">Setup MFA</span>
101+
</b-button>
102+
101103
</b-nav-item>
102104

103105
<b-nav-item :href="$config.studioServer.BASE_URL" target="_blank" title="Developer Dashboard API">
104-
<i class="fa fa-code f-36" style=" color: grey"></i></b-nav-item>
106+
<i class="fa fa-code" style=" color: #707070;height: 24px; font-size: 24px; width: 24px;"></i></b-nav-item>
105107
<b-nav-item href="https://docs.hypersign.id/entity-studio/developer-dashboard" target="_blank"
106108
title="Documentation">
107-
<i class="fas fa-book-open f-36" style=" color: grey"></i>
109+
<i class="fas fa-book-open nav-icon" style=""></i>
108110
</b-nav-item>
109111

110112
<b-nav-item-dropdown right v-if="getIsLoggedOut" title="Profile">
111113
<template #button-content>
112-
<i class="fas fa-user-circle f-36" style="color: grey"></i>
114+
<i class="fas fa-user-circle nav-icon"></i>
113115
</template>
114116

115117
<b-dropdown-group style="text-align: left;">
116118
<b-dropdown-item-button style="text-align: left" :title="userDetails.email"
117119
@click="copyToClip(userDetails.email, 'Email')">
118-
<i class="far fa-copy mt-1"></i>
119120
{{ shorten(userDetails.email) }}
120121
</b-dropdown-item-button>
121122

122-
<!-- <b-dropdown-item-button style="text-align: left" :title="userDetails.did" v-if="userDetails.did" @click="copyToClip(userDetails.did, 'DID')">
123-
<i class="far fa-copy" ></i>
124-
{{ shorten(userDetails.did) }}
125-
</b-dropdown-item-button> -->
126-
127123
<b-dropdown-item-button style="text-align: left" @click="goTo('/studio/settings')" title="Teams">
128-
<i class="fa fa-cog" style="cursor: pointer; font-size: 1.3rem"></i>
124+
<i class="fa fa-cog nav-icon" style="cursor: pointer; font-size: 1.3rem"></i>
129125
Settings
130126
</b-dropdown-item-button>
131127

132128
<b-dropdown-item-button style="text-align: left" @click="goTo('/studio/dashboard')" title="Teams">
133-
<i class="fa fa-home" style="cursor: pointer; font-size: 1.3rem"></i>
129+
<i class="fa fa-home nav-icon" style="cursor: pointer; font-size: 1.3rem"></i>
134130
Home
135131
</b-dropdown-item-button>
136132
<b-dropdown-divider></b-dropdown-divider>
137133

138134
<b-dropdown-item-button style="text-align: left" @click="logoutAll()" title="Logout">
139-
<i class="fas fa-sign-out-alt" style="cursor: pointer; font-size: 1.3rem"></i>
135+
<i class="fas fa-sign-out-alt nav-icon" style="cursor: pointer; font-size: 1.3rem"></i>
140136
Logout
141137
</b-dropdown-item-button>
142138
</b-dropdown-group>
@@ -259,6 +255,7 @@
259255
margin-top: 65px;
260256
/* box-shadow: 0 0 15px 0 rgba(34, 41, 47, 0.05); */
261257
box-shadow: 0 2px 6px 0 rgba(32, 33, 37, .1);
258+
border-right: 1px solid rgba(128, 128, 128, 0.21);
262259
}
263260
264261
.v-sidebar-menu.vsm_white-theme .vsm--mobile-bg {
@@ -268,28 +265,27 @@
268265
.vsm--mobile-bg {
269266
background: #905ab098 !important;
270267
}
271-
272268
.v-sidebar-menu.vsm_white-theme {
273269
background-color: white !important;
274-
color: #000 !important;
270+
color: rgba(0,0,0,.87) !important;
275271
}
276272
277273
.v-sidebar-menu.vsm_white-theme .vsm--header {
278-
color: #000 !important;
274+
color: rgba(0,0,0,.87) !important;
279275
}
280276
281277
.v-sidebar-menu.vsm_white-theme .vsm--link {
282-
color: #000 !important;
278+
color: rgba(0,0,0,.87) !important;
283279
}
284280
285281
.v-sidebar-menu.vsm_white-theme .vsm--link_level-1 .vsm--link:hover {
286-
color: #000 !important;
282+
color: rgba(0,0,0,.87) !important;
287283
background: #905ab0 !important;
288284
}
289285
290286
.v-sidebar-menu.vsm_white-theme .vsm--link_level-1 .vsm--icon {
291287
background-color: transparent !important;
292-
color: #000 !important;
288+
color: #66666a !important;
293289
}
294290
</style>
295291

src/assets/css/gblStyle.css

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,27 @@
11

22
#app {
33
text-align: left;
4-
/* background-color: #fff; */
54
font-size: 13px;
65
font-style: normal;
7-
font-weight: 400;
8-
line-height: 1.42857142857143;
96
text-decoration-skip-ink: auto;
107
color: #636363;
8+
font-family: Roboto, sans-serif;
119
}
1210

1311
.logo-container{
14-
/* border: 1px solid #303c3029;
15-
border-radius: 40px;
16-
overflow: hidden; */
12+
border: 1px solid rgba(48, 60, 48, 0.16);
13+
border-radius: 51px;
14+
overflow: hidden;
1715
}
1816

17+
.nav-icon {
18+
color: #707070;
19+
font-size: 24px;
20+
height: 24px;
21+
width: 24px;
22+
}
23+
24+
1925
.button-theme{
2026
background-color: #905ab0;
2127
border-collapse: #905ab0;

0 commit comments

Comments
 (0)