Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion resources/js/processes/designer/Assets.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
class="assets mb-3"
>
<b-navbar type="faded">
<b-navbar-brand class="text-uppercase">
<b-navbar-brand class="title-designer">
{{ $t("Assets") }}
</b-navbar-brand>
</b-navbar>
Expand Down
4 changes: 2 additions & 2 deletions resources/js/processes/designer/MyProject.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<div class="project mt-3">
<b-navbar type="faded">
<b-navbar-brand class="text-uppercase">
<b-navbar-brand class="title-designer">
{{ $t("My Projects") }}
</b-navbar-brand>
<b-navbar-nav align="end">
Expand Down Expand Up @@ -45,7 +45,7 @@
</template>

<script>
import ProjectsLastModifiedListing from './ProjectsLastModifiedListing';
import ProjectsLastModifiedListing from "./ProjectsLastModifiedListing.vue";

Vue.component("ProjectsLastModifiedListing", ProjectsLastModifiedListing);

Expand Down
4 changes: 2 additions & 2 deletions resources/js/processes/designer/RecentAssets.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<div class="project">
<b-navbar type="faded">
<b-navbar-brand class="text-uppercase">
<b-navbar-brand class="title-designer">
{{ $t("RECENT ASSETS") }}
</b-navbar-brand>
<div class="d-flex" align="end">
Expand Down Expand Up @@ -82,7 +82,7 @@
</template>

<script>
import RecentAssetsList from './RecentAssetsList.vue';
import RecentAssetsList from "./RecentAssetsList.vue";

Vue.component("RecentAssetsList", RecentAssetsList);

Expand Down
12 changes: 11 additions & 1 deletion resources/sass/app.scss
Original file line number Diff line number Diff line change
Expand Up @@ -996,4 +996,14 @@ nav {
#processWizard___BV_modal_body_ .card {
background-color: inherit;
border: none;
}
}

.title-designer {
color: var(--Black-for-icons, #57646F);
font-size: 14px;
font-style: normal;
font-weight: 700;
line-height: normal;
letter-spacing: -0.28px;
text-transform: uppercase;
}