Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/components/Pricing/PlanCard/planCard.style.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ const PlanCardWrapper = styled.section`
font-size: 0.75rem;
font-weight: 500;
top: 0rem;
right: .9rem;
right: .0rem;
color: #eee;
transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
Expand All @@ -98,7 +98,7 @@ const PlanCardWrapper = styled.section`
font-size: 0.75rem;
font-weight: 500;
top: 0rem;
right: .9rem;
right: .0rem;
color: #111;
transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
Expand Down
17 changes: 17 additions & 0 deletions src/reusecore/Layout/Col.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,28 @@ import styled from "styled-components";
const Dimensions = ["", "8.333333%", "16.666667%", "25%", "33.333333%", "41.666667%", "50%", "58.333333%", "66.666667%", "75%", "83.333333%", "91.666667%", "100%"];

const ColWrapper = styled.div`

position: relative;
width: 100%;
padding-left: 15px;
padding-right: 15px;
position: relative;
width: 100%;
box-sizing: border-box;
padding: 0;
Comment on lines +7 to +15
Copy link
Contributor

@ARYANSHAH1567 ARYANSHAH1567 Sep 15, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@ChetanFTW, The reusecore/Layout is being used in many places and making changes directly here may affect other places where they are being used. It is recommended to not make changes here

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hey @ARYANSHAH1567, will check this out and update you in ASAP


flex: 0 1 300px;
max-width: 300px;
width: 100%;

@media (max-width: 1200px) {
flex: 0 1 45%;
max-width: 45%;
}
@media (max-width: 768px) {
flex: 0 1 100%;
max-width: 100%;
}
@media (min-width: 315px) {
flex: ${({ $xs }) =>
($xs === 1 && `0 0 ${Dimensions[1]}`) ||
Expand Down
8 changes: 4 additions & 4 deletions src/reusecore/Layout/Container.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ import styled, { css } from "styled-components";

const ContainerWrapper = styled.div`

width: 100%;
padding-right: 15px;
padding-left: 15px;
// width: 100%;
// padding-right: 15px;
// padding-left: 15px;
margin: 0 auto;
@media (min-width: 576px) {
max-width: 100%;
Expand All @@ -17,7 +17,7 @@ const ContainerWrapper = styled.div`
max-width: 960px;
}
@media (min-width: 1200px) {
max-width: 1170px;
max-width: 1324px;
}

${props => props.fluid && css`
Expand Down
9 changes: 4 additions & 5 deletions src/reusecore/Layout/Row.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,10 @@ import styled, { css } from "styled-components";

const RowWrapper = styled.div`
display: flex;
margin-left: -15px;
margin-right: -15px;
@media (max-width: 760px) {
flex-wrap: wrap;
}
flex-wrap: wrap;
gap: 30px;
margin-left: 0;
margin-right: 0;
${(props) =>
props.$Vcenter &&
css({
Expand Down
Loading