You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@age.apache.org by hb...@apache.org on 2022/09/06 00:49:23 UTC

[age-website] branch new-web updated (cbc3953 -> cc2eb1d)

This is an automated email from the ASF dual-hosted git repository.

hbshin pushed a change to branch new-web
in repository https://gitbox.apache.org/repos/asf/age-website.git


    from cbc3953  Update ProjectDetail.js
     new dbea9f2  Fix Project detail font  issue when mobile version
     new 133254c  Fix font size change px to rem
     new cc2eb1d  Update remove video

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 src/components/styles/ProjectDtail.module.scss | 10 +++++-----
 src/templates/committers-page.js               |  4 ++--
 src/templates/index-page.js                    | 26 +++++++++++++-------------
 3 files changed, 20 insertions(+), 20 deletions(-)


[age-website] 03/03: Update remove video

Posted by hb...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

hbshin pushed a commit to branch new-web
in repository https://gitbox.apache.org/repos/asf/age-website.git

commit cc2eb1d0f4cf2288b7bf16aba097b97dbe966c3d
Author: Hanbyeol Shin /  David Shin / 신한별 <76...@users.noreply.github.com>
AuthorDate: Tue Sep 6 09:49:12 2022 +0900

    Update remove video
---
 src/templates/committers-page.js |  4 ++--
 src/templates/index-page.js      | 26 +++++++++++++-------------
 2 files changed, 15 insertions(+), 15 deletions(-)

diff --git a/src/templates/committers-page.js b/src/templates/committers-page.js
index b9e56c5..5449f8b 100644
--- a/src/templates/committers-page.js
+++ b/src/templates/committers-page.js
@@ -58,7 +58,7 @@ export const CommittersTemplatePage = ({
     <section className={styles.root}>
       <h1>{pmcTitle}</h1>
       <CommitersList list={pmc} pmcYn={true} />
-      <h1>Welcome to AGE</h1>
+      {/* <h1>Welcome to AGE</h1>
       <div className={styles.Youtube}>
         <iframe
           //src="https://www.youtube.com/embed/qC_3F4Gaipk"
@@ -68,7 +68,7 @@ export const CommittersTemplatePage = ({
           allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
           allowfullscreen
         ></iframe>
-      </div>
+      </div> */}
       <h1>{nonpmcTitle}</h1>
       <CommitersList list={nonpmc} pmcYn={false} />
       {/* <PageContent className="content" content={content} /> */}
diff --git a/src/templates/index-page.js b/src/templates/index-page.js
index 520b9e1..ee55885 100644
--- a/src/templates/index-page.js
+++ b/src/templates/index-page.js
@@ -128,19 +128,19 @@ export const IndexPageTemplate = ({
         <RedditRss />
 
       </section>
-      <section style={{backgroundPosition: 'center', backgroundSize: 'contain', backgroundRepeat: 'no-repeat'}}>
-      <div className={styles.content}>
-        <h2>Message From AGE Team</h2>
-        <div className={styles.Youtube}>
-          <iframe
-            src="https://www.youtube.com/embed/w8ixRk9YXJo"
-            title="YouTube video player"
-            frameBorder="0"
-            allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
-            allowFullScreen
-          ></iframe>
-        </div>
-      </div>
+      <section style={{backgroundPosition: 'center', backgroundSize: 'contain', backgroundRepeat: 'no-repeat'}} hidden >
+        {/* <div className={styles.content}>
+          <h2>Message From AGE Team</h2>
+          <div className={styles.Youtube}>
+            <iframe
+              src="https://www.youtube.com/embed/w8ixRk9YXJo"
+              title="YouTube video player"
+              frameBorder="0"
+              allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
+              allowFullScreen
+            ></iframe>
+          </div>
+        </div> */}
       </section>
       <section style={{backgroundPosition: 'center', backgroundSize: 'contain', backgroundRepeat: 'no-repeat'}}>
       <div className={styles.content}>


[age-website] 02/03: Fix font size change px to rem

Posted by hb...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

hbshin pushed a commit to branch new-web
in repository https://gitbox.apache.org/repos/asf/age-website.git

commit 133254cec02818ee255b632ab3d46a17c0990970
Author: Hanbyeol Shin /  David Shin / 신한별 <76...@users.noreply.github.com>
AuthorDate: Tue Sep 6 09:48:54 2022 +0900

    Fix font size change px to rem
---
 src/components/styles/ProjectDtail.module.scss | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/components/styles/ProjectDtail.module.scss b/src/components/styles/ProjectDtail.module.scss
index afa29d7..1004a39 100644
--- a/src/components/styles/ProjectDtail.module.scss
+++ b/src/components/styles/ProjectDtail.module.scss
@@ -13,7 +13,7 @@
   box-shadow: rgba(0, 0, 0, 0.35) 0rem 0.5rem 0.9375rem;
   div {
     width: 100%;
-    padding: 20px 20px 0px;
+    padding: 1.25rem 1.25rem 0rem;
     max-height: 13.9375rem;
   }
   p {
@@ -36,11 +36,11 @@
   }
   .update {
     font-weight: normal;
-    font-size: 16px;
+    font-size: 1rem;
   }
   .desc {
     font-weight: normal;
-    font-size: 16px;
+    font-size: 1rem;
     height: 3.4375rem;
     margin-bottom: 1rem;
     text-overflow: ellipsis;


[age-website] 01/03: Fix Project detail font issue when mobile version

Posted by hb...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

hbshin pushed a commit to branch new-web
in repository https://gitbox.apache.org/repos/asf/age-website.git

commit dbea9f2d93b1da687a73a1105d87bcea6a2149b4
Author: Hanbyeol Shin /  David Shin / 신한별 <76...@users.noreply.github.com>
AuthorDate: Tue Sep 6 08:49:39 2022 +0900

    Fix Project detail font  issue when mobile version
---
 src/components/styles/ProjectDtail.module.scss | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/components/styles/ProjectDtail.module.scss b/src/components/styles/ProjectDtail.module.scss
index e3be88d..afa29d7 100644
--- a/src/components/styles/ProjectDtail.module.scss
+++ b/src/components/styles/ProjectDtail.module.scss
@@ -31,7 +31,7 @@
     font-weight: bold;
     font-size: 1.3rem;
     margin-bottom: 1rem;
-    height: 80px;
+    height: 5rem;
 
   }
   .update {
@@ -41,7 +41,7 @@
   .desc {
     font-weight: normal;
     font-size: 16px;
-    height: 55px;
+    height: 3.4375rem;
     margin-bottom: 1rem;
     text-overflow: ellipsis;
     display: -webkit-box;