Skip to content

Commit

Permalink
💄Society
Browse files Browse the repository at this point in the history
  • Loading branch information
noeypatt committed Apr 1, 2020
1 parent 06f6cc5 commit c0d4f68
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
8 changes: 5 additions & 3 deletions pages/index/Society.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ const Society = () => {
<link rel='icon' href='/static/logomain.svg' />
</Head>
<NavBar name="main" tab={isSmallScreen ? homeMin : home} confirm={onConfirm} />
<div className="warp-society">
<div className="warp-society-page">
<div className="page-content">
{
isSmallScreen ?
Expand All @@ -74,7 +74,10 @@ const Society = () => {
{
data.map((item, index) => (
<div className="title-content" key={index}>
<h6 className="header-title-content">{item.title}</h6>
<div className="header-title-content">
<h6 >{item.title}</h6>
</div>
<h5>{item.amount}</h5>
<h6>{item.text}</h6>
<h6>{item.subtext}</h6>
</div>
Expand All @@ -100,7 +103,6 @@ const Society = () => {
<h6 >{item.title}</h6>
<h5>{item.amount}</h5>
</div>

<h6>{item.text}</h6>
<h6>{item.subtext}</h6>
</div>
Expand Down
7 changes: 6 additions & 1 deletion styles/index/society.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.warp-society {
.warp-society-page {
.page-content {
padding-top: 3rem;

Expand Down Expand Up @@ -45,6 +45,11 @@
@media (max-width: 768px) {
padding: 0;
}

h5{
text-align: start;
font-weight: lighter !important;
}

.header-title-content {
display: flex;
Expand Down

1 comment on commit c0d4f68

@vercel
Copy link

@vercel vercel bot commented on c0d4f68 Apr 1, 2020

Choose a reason for hiding this comment

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

Please sign in to comment.