Skip to content

Commit 034b77d

Browse files
author
vivek-gofynd
committed
change css
1 parent ed64d2b commit 034b77d

File tree

2 files changed

+41
-36
lines changed

2 files changed

+41
-36
lines changed

App.vue

Lines changed: 40 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,47 @@
55
</template>
66

77
<script>
8-
98
export default {
109
name: 'App',
1110
}
1211
</script>
12+
13+
<style>
14+
html {
15+
height: 100%;
16+
width: 100%;
17+
font-size: 8px;
18+
}
19+
20+
body {
21+
margin: 0;
22+
font-family: 'Inter', sans-serif;
23+
background-color: #f8f8f8 !important;
24+
width: 100%;
25+
height: 100%;
26+
-webkit-font-smoothing: antialiased;
27+
-moz-osx-font-smoothing: grayscale;
28+
}
29+
30+
.flex-column {
31+
display: flex;
32+
flex-direction: column;
33+
}
34+
35+
.flex-row {
36+
display: flex;
37+
flex-direction: row;
38+
align-items: center;
39+
justify-content: space-between;
40+
gap: 10px;
41+
}
42+
43+
.mr-r-12 {
44+
margin-right: 12px;
45+
}
46+
47+
.cl-RoyalBlue {
48+
color: #2e31be;
49+
margin-left: 2px;
50+
}
51+
</style>

pages/Home.vue

Lines changed: 1 addition & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</div>
1313
<div class="description">
1414
This is an illustrative Platform API call to fetch the list of products
15-
in this company. Check your extension folders 'server.js'
15+
in this company. Check your extension folder's 'server.js'
1616
file to know how to call Platform API and start calling API you
1717
require.
1818
</div>
@@ -169,20 +169,6 @@ export default {
169169
</script>
170170
171171
<style lang="less" scoped>
172-
html {
173-
height: 100%;
174-
width: 100%;
175-
font-size: 8px;
176-
}
177-
178-
body {
179-
margin: 0;
180-
font-family: Inter;
181-
background-color: #f8f8f8 !important;
182-
width: 100%;
183-
height: 100%;
184-
}
185-
186172
.loader {
187173
display: flex;
188174
flex-direction: column;
@@ -195,7 +181,6 @@ body {
195181
}
196182
197183
.products-container {
198-
font-family: Inter;
199184
position: relative;
200185
box-sizing: border-box;
201186
background: #fff;
@@ -281,23 +266,4 @@ body {
281266
}
282267
}
283268
}
284-
285-
.flex-column {
286-
display: flex;
287-
flex-direction: column;
288-
}
289-
.flex-row {
290-
display: flex;
291-
flex-direction: row;
292-
align-items: center;
293-
justify-content: space-between;
294-
gap: 10px;
295-
}
296-
.mr-r-12 {
297-
margin-right: 12px;
298-
}
299-
.cl-RoyalBlue {
300-
color: #2e31be;
301-
margin-left: 2px;
302-
}
303269
</style>

0 commit comments

Comments
 (0)