Skip to content

Commit

Permalink
UI fixes in all pages
Browse files Browse the repository at this point in the history
  • Loading branch information
monika8848 committed Sep 29, 2023
1 parent eed7d00 commit da0128a
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
2 changes: 1 addition & 1 deletion cards/MyOrderCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ const MyOrderCard = ({ data, selectedMultiLangData }: any) => {
<div className=" text-center " >
<div className="flex-fill detail_link text-capitalize b2c_btn btn_order_detail fs-13" >
<Link href={`myOrder/${data?.name}`} legacyBehavior>
<a href={`myOrder/${data?.name}`} className="color-black fs-13 btn-orderdetail-mob" >
<a href={`myOrder/${data?.name}`} className=" color-detail fs-13 btn-orderdetail-mob" >
{selectedMultiLangData?.order_details}
</a>
</Link>
Expand Down
15 changes: 11 additions & 4 deletions styles/pages/_allpage-wrapper.scss
Original file line number Diff line number Diff line change
Expand Up @@ -72,13 +72,14 @@
width: 100px;
}
.b2c_btn{
border: 2px solid #2c4152 !important;
border: 2px solid #0071dc !important;
font-size: 13px !important;
// color: black !important;
}
.b2c_btn:hover{
border: 2px solid #2c4152 !important;
background-color: gainsboro !important;
color: black !important;
background-color: #0071dc!important;

color: white !important;
}
.fs-13{
font-size: 13px !important;
Expand All @@ -105,6 +106,12 @@
.myorder-header-pt{
padding-top: 7.5px !important;
}
.color-detail{
color: black !important;
}
.color-detail:hover {
color: white !important;
}

@media only screen and (max-width: 600px) {
.margin_from_nav {
Expand Down

0 comments on commit da0128a

Please sign in to comment.