Skip to content

Commit 2ab036c

Browse files
committed
FOUR-13376:Type of letter of the square’s title are not the same as figma in Designer Welcome Screen
1 parent be3482a commit 2ab036c

File tree

4 files changed

+16
-6
lines changed

4 files changed

+16
-6
lines changed

resources/js/processes/designer/Assets.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
class="assets mb-3"
55
>
66
<b-navbar type="faded">
7-
<b-navbar-brand class="text-uppercase">
7+
<b-navbar-brand class="title-designer">
88
{{ $t("Assets") }}
99
</b-navbar-brand>
1010
</b-navbar>

resources/js/processes/designer/MyProject.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<template>
22
<div class="project mt-3">
33
<b-navbar type="faded">
4-
<b-navbar-brand class="text-uppercase">
4+
<b-navbar-brand class="title-designer">
55
{{ $t("My Projects") }}
66
</b-navbar-brand>
77
<b-navbar-nav align="end">
@@ -45,7 +45,7 @@
4545
</template>
4646

4747
<script>
48-
import ProjectsLastModifiedListing from './ProjectsLastModifiedListing';
48+
import ProjectsLastModifiedListing from "./ProjectsLastModifiedListing.vue";
4949
5050
Vue.component("ProjectsLastModifiedListing", ProjectsLastModifiedListing);
5151

resources/js/processes/designer/RecentAssets.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<template>
22
<div class="project">
33
<b-navbar type="faded">
4-
<b-navbar-brand class="text-uppercase">
4+
<b-navbar-brand class="title-designer">
55
{{ $t("RECENT ASSETS") }}
66
</b-navbar-brand>
77
<div class="d-flex" align="end">
@@ -82,7 +82,7 @@
8282
</template>
8383

8484
<script>
85-
import RecentAssetsList from './RecentAssetsList.vue';
85+
import RecentAssetsList from "./RecentAssetsList.vue";
8686
8787
Vue.component("RecentAssetsList", RecentAssetsList);
8888

resources/sass/app.scss

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -996,4 +996,14 @@ nav {
996996
#processWizard___BV_modal_body_ .card {
997997
background-color: inherit;
998998
border: none;
999-
}
999+
}
1000+
1001+
.title-designer {
1002+
color: var(--Black-for-icons, #57646F);
1003+
font-size: 14px;
1004+
font-style: normal;
1005+
font-weight: 700;
1006+
line-height: normal;
1007+
letter-spacing: -0.28px;
1008+
text-transform: uppercase;
1009+
}

0 commit comments

Comments
 (0)