Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
ecommerce-maven
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ascend
ecommerce-maven
Commits
e048b1e3
Commit
e048b1e3
authored
May 10, 2021
by
Shaphen Pangburn
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[AFP-48 Shaphen Pangburn]: Refactor Product Market bottome border and fix css animations bug
parent
d90c9511
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
3 deletions
+17
-3
index.html
ecom-web/public/index.html
+5
-1
product-market.jsx
ecom-web/src/components/product-market/product-market.jsx
+5
-1
product-market.css
ecom-web/src/resources/stylesheets/product-market.css
+7
-1
No files found.
ecom-web/public/index.html
View file @
e048b1e3
...
...
@@ -5,7 +5,11 @@
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1"
/>
<!-- allow ajax calls -->
<script
type=
"text/javascript"
src=
"https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js"
></script>
<!-- css animations -->
<link
rel=
"stylesheet"
href=
"https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
/>
<title>
Ecommerce App
</title>
</head>
<body>
...
...
ecom-web/src/components/product-market/product-market.jsx
View file @
e048b1e3
...
...
@@ -30,7 +30,11 @@ export default class ProductMarket extends Component {
return
(
<
div
className=
"product-market-container"
>
<
h1
id=
"product-market-title"
>
Product Market
</
h1
>
<
div
id=
"product-market-title"
>
<
p
>
Product Market
</
p
>
</
div
>
<
div
className=
"products-container"
>
{
this
.
props
.
products
.
map
(
prod
=>
{
return
(
...
...
ecom-web/src/resources/stylesheets/product-market.css
View file @
e048b1e3
...
...
@@ -7,14 +7,20 @@
#product-market-title
{
width
:
100%
;
display
:
flex
;
justify-content
:
center
;
text-align
:
center
;
font-size
:
30px
;
margin
:
15px
0px
10px
;
cursor
:
default
;
border-bottom
:
1px
solid
black
;
padding-bottom
:
15px
;
}
#product-market-title
p
{
width
:
30%
;
border-bottom
:
1px
solid
black
;
}
.products-container
{
width
:
80%
;
display
:
flex
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment