Skip to content

Commit

Permalink
fixed some css
Browse files Browse the repository at this point in the history
  • Loading branch information
Vishwas1 committed Sep 6, 2024
1 parent 6d90c00 commit 94db205
Show file tree
Hide file tree
Showing 13 changed files with 500 additions and 569 deletions.
9 changes: 5 additions & 4 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@

<sidebar-menu class="sidebar-wrapper" v-if="showSideNavbar" @toggle-collapse="onToggleCollapse"
:collapsed="isSidebarCollapsed" :theme="'white-theme'" width="220px" :menu="getSideMenu()">
<div slot="header" class="border">
<div slot="header" style="border-bottom: 1px solid #d3d3d354;">
<div class="row center p-1">
<div class="col">
<div class="p-1 center">
Expand Down Expand Up @@ -200,8 +200,8 @@
padding: 5px !important;
padding-left: 1.5%;
text-align: left;
box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 2px 0px,
rgba(0, 0, 0, 0.02) 0px 3px 1px -2px, rgba(0, 0, 0, 0.01) 0px 1px 5px 0px;
box-shadow: 0 2px 6px 0 rgba(32, 33, 37, .1);
z-index: -1;
}
.orgNameCss {
Expand Down Expand Up @@ -258,7 +258,8 @@
.sidebar-wrapper {
min-width: 70px;
margin-top: 65px;
box-shadow: 0 0 15px 0 rgba(34, 41, 47, 0.05);
/* box-shadow: 0 0 15px 0 rgba(34, 41, 47, 0.05); */
box-shadow: 0 2px 6px 0 rgba(32, 33, 37, .1);
}
.v-sidebar-menu.vsm_white-theme .vsm--mobile-bg {
Expand Down
14 changes: 12 additions & 2 deletions src/assets/css/gblStyle.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@

#app {
text-align: left;
background-color: #fff;
/* background-color: #fff; */
font-size: 13px;
font-style: normal;
font-weight: 400;
Expand All @@ -9,6 +10,7 @@
color: #636363;
}


.button-theme{
background-color: #905ab0;
border-collapse: #905ab0;
Expand Down Expand Up @@ -97,10 +99,18 @@ a {
}

.card {
border-radius: 10px;
border-radius: 8px;
box-shadow: 0 0 2rem 0 rgb(136 152 170 / 15%);
}

.mandatory{
color: indianred
}


.btn{
/* border-radius: 20px; */
/* background-color: #a55be6; */
/* color: white; */
/* border: none */
}
2 changes: 1 addition & 1 deletion src/store/mainStore.js
Original file line number Diff line number Diff line change
Expand Up @@ -932,7 +932,7 @@ const mainStore = {
if (!getters.getSelectedService || !getters.getSelectedService.tenantUrl) {
return reject(new Error('Tenant url is null or empty, service is not selected'))
}
const url = `${sanitizeUrl(getters.getSelectedService.tenantUrl)}/api/v1/e-kyc/verification/widget-config`;
const url = `${sanitizeUrl(getters.getSelectedService.tenantUrl)}/api/v1/e-kyc/verification/webhook-config`;
// const url = `http://localhost:3001/api/v1/e-kyc/verification/webhook-config`
const authToken = getters.getSelectedService.access_token
const headers = UtilsMixin.methods.getHeader(authToken);
Expand Down
4 changes: 2 additions & 2 deletions src/views/Apps.vue
Original file line number Diff line number Diff line change
Expand Up @@ -606,10 +606,10 @@
cursor: grab;
}
.card {
/* .card {
box-shadow: 0 0 2rem 0 rgb(136 152 170 / 15%);
border-radius: 20px;
}
} */
.icons {
cursor: pointer;
Expand Down
6 changes: 1 addition & 5 deletions src/views/SettingConfig.vue
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,7 @@
</div>
</div>
</template>
<style>
.card {
box-shadow: 0 0 2rem 0 rgb(136 152 170 / 15%);
}
</style>


<script>
import TeamMembers from '../components/teams/TeamMembers.vue';
Expand Down
3 changes: 0 additions & 3 deletions src/views/playground/DID.vue
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,6 @@
padding: 0px;
}
.card {
border-radius: 10px;
}
.goschema {
color: #339af0;
Expand Down
4 changes: 0 additions & 4 deletions src/views/playground/OnChainKycSystems.vue
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,6 @@
padding: 0px;
}
.card {
border-radius: 10px;
}
.goschema {
color: #339af0;
}
Expand Down
Loading

0 comments on commit 94db205

Please sign in to comment.