Skip to content

Commit

Permalink
styled shop module
Browse files Browse the repository at this point in the history
  • Loading branch information
NisanurBulut committed Dec 6, 2020
1 parent 8394dde commit 6e6fee5
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ export class LoadingInterceptor implements HttpInterceptor {
if (req.method === 'POST' && req.url.includes('order')) {
return next.handle(req);
}
if (req.method === 'DELETE') {
return next.handle(req);
}
if (!req.url.includes('emailexists')) {
return next.handle(req);
}
Expand Down
20 changes: 17 additions & 3 deletions Camekan.Client/src/app/shop/shop.component.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@
li {
cursor: pointer;
border: none;
padding: 10px 20px;
font-size: 1.1em;
&:focus {
outline: none;
}
&:active {
border-radius: 10px;
}
&:not(active):hover{
color:#fff;
background-color:#2c3e509a;
border-radius: 10px;
}
}
h5 {
color: #18bc9c;
}
h5{
color:#18bc9c;
}

0 comments on commit 6e6fee5

Please sign in to comment.