Skip to content

Commit

Permalink
Merge pull request #6116 from ShivamCoder23/ShivamCoder23-patch-1
Browse files Browse the repository at this point in the history
fix wrapping around color brand
  • Loading branch information
sudhanshutech authored Dec 9, 2024
2 parents c2fc539 + 0787dd5 commit fb3052b
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 8 deletions.
4 changes: 3 additions & 1 deletion src/sections/Company/Brand/Brand-components/catalog.js
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,9 @@ const Catalog = () => {
white when using project colors as the background.
</p>
</Col>
<Row className="color-code-wrapper">
<Row style={{
flexWrap: "wrap"
}} className="color-code-wrapper">
<ColorBox name="Keppel" R="0" G="179" B="159" colorCode="#00B39F" />
<ColorBox
name="Caribbean Green"
Expand Down
4 changes: 3 additions & 1 deletion src/sections/Company/Brand/Brand-components/community.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,9 @@ const CommunityBrand = () => {
monochrome tonal when using a color background.
</p>
</Col>
<Row className="color-code-wrapper">
<Row style={{
flexWrap: "wrap"
}} className="color-code-wrapper">
<ColorBox name="Keppel" R="0" G="179" B="159" colorCode="#00B39F" />
<ColorBox name="Caribbean Green" R="0" G="211" B="169" colorCode="#00D3A9" />
<ColorBox name="Casper" R="177" G="182" B="184" colorCode="#B1B6B8" />
Expand Down
4 changes: 3 additions & 1 deletion src/sections/Company/Brand/Brand-components/layer5.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,9 @@ const Layer5Brand = () => {
when using project colors as the background.
</p>
</Col>
<Row className="color-code-wrapper">
<Row style={{
flexWrap: "wrap"
}} className="color-code-wrapper">
<ColorBox name="Keppel" R="0" G="179" B="159" colorCode="#00B39F" />
<ColorBox name="Caribbean Green" R="0" G="211" B="169" colorCode="#00D3A9" />
<ColorBox name="Saffron" R="235" G="192" B="23" colorCode="#EBC017" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,9 @@ const MesheryOperatorBrand = () => {
monochrome tonal when using a color background.
</p>
</Col>
<Row className="color-code-wrapper">
<Row style={{
flexWrap: "wrap"
}} className="color-code-wrapper">
<ColorBox name="Charcoal" R="60" G="73" B="79" colorCode="#3C494F" />
<ColorBox name="Keppel" R="0" G="179" B="159" colorCode="#00B39F" />
<ColorBox name="Caribbean Green" R="0" G="211" B="169" colorCode="#00D3A9" />
Expand Down
4 changes: 3 additions & 1 deletion src/sections/Company/Brand/Brand-components/meshmark.js
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,9 @@ const MeshMarkBrand = () => {
using project colors as the background.
</p>
</Col>
<Row className="color-code-wrapper">
<Row style={{
flexWrap: "wrap"
}} className="color-code-wrapper">
<ColorBox name="Charcoal" R="60" G="73" B="79" colorCode="#3C494F" />
<ColorBox name="Keppel" R="0" G="179" B="159" colorCode="#00B39F" />
<ColorBox name="Caribbean Green" R="0" G="211" B="169" colorCode="#00D3A9" />
Expand Down
4 changes: 3 additions & 1 deletion src/sections/Company/Brand/Brand-components/meshsync.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,9 @@ const MeshSyncBrand = () => {
monochrome tonal when using a color background.
</p>
</Col>
<Row className="color-code-wrapper">
<Row style={{
flexWrap: "wrap"
}} className="color-code-wrapper">
<ColorBox name="Keppel" R="0" G="179" B="159" colorCode="#00B39F" />
<ColorBox name="Caribbean Green" R="0" G="211" B="169" colorCode="#00D3A9" />
<ColorBox name="Casper" R="177" G="182" B="184" colorCode="#B1B6B8" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,9 @@ const ServiceMeshPatterns = () => {
using project colors as the background.
</p>
</Col>
<Row className="color-code-wrapper">
<Row style={{
flexWrap: "wrap"
}} className="color-code-wrapper">
<ColorBox name="Charcoal" R="60" G="73" B="79" colorCode="#3C494F" />
<ColorBox name="Keppel" R="0" G="179" B="159" colorCode="#00B39F" />
<ColorBox name="Caribbean Green" R="0" G="211" B="169" colorCode="#00D3A9" />
Expand Down
4 changes: 3 additions & 1 deletion src/sections/Company/Brand/Brand-components/smp.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,9 @@ const SMPBrand = () => {
using project colors as the background.
</p>
</Col>
<Row className="color-code-wrapper">
<Row style={{
flexWrap: "wrap"
}} className="color-code-wrapper">
<ColorBox name="Charcoal" R="60" G="73" B="79" colorCode="#3C494F" />
<ColorBox name="Keppel" R="0" G="179" B="159" colorCode="#00B39F" />
<ColorBox name="Caribbean Green" R="0" G="211" B="169" colorCode="#00D3A9" />
Expand Down

0 comments on commit fb3052b

Please sign in to comment.