-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
about page with discord embed created; works with light dark toggle a…
…nd mobile (#48) * combining discord embed and about page * comment added * prettier css fix * minor css fix - alphabetical order rule * edits made; corner color of discord embed fixed * stylelint fixes * Update config.ts * nitpick code cleanliness edits * yarn.lock conflict merge --------- Co-authored-by: Alex Zhang <[email protected]> Co-authored-by: Raymond Sun <[email protected]>
- Loading branch information
1 parent
1b3f47b
commit 5b14b03
Showing
10 changed files
with
12,007 additions
and
544 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
@use 'src/styles/vars.scss' as vars; | ||
|
||
.logo { | ||
height: 115px; | ||
} | ||
|
||
.container { | ||
font-size: vars.$general-body; | ||
margin: 0 auto; | ||
max-width: 60rem; | ||
} | ||
|
||
.header { | ||
align-items: center; | ||
display: flex; | ||
padding: 0 2rem; | ||
|
||
h1 { | ||
font-size: vars.$general-heading-2; | ||
margin-left: 1.25rem; | ||
} | ||
} | ||
|
||
.body { | ||
margin: auto; | ||
max-width: auto; | ||
|
||
@media only screen and (min-width: vars.$breakpoint-md) { | ||
display: grid; | ||
grid-template-columns: 1fr 1fr; | ||
} | ||
|
||
.socials { | ||
padding: 2rem; | ||
|
||
.description { | ||
margin-bottom: 2rem; | ||
margin-top: 0; | ||
} | ||
|
||
a { | ||
align-items: center; | ||
display: flex; | ||
flex-direction: row; | ||
gap: 0.5rem; | ||
margin-bottom: 0.7rem; | ||
|
||
.theme { | ||
fill: currentColor; | ||
} | ||
} | ||
} | ||
|
||
.discordPreview { | ||
border-radius: 10px; | ||
overflow: hidden; | ||
width: 350px; | ||
|
||
@media only screen and (max-width: vars.$breakpoint-md) { | ||
display: none; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
export type Styles = { | ||
body: string; | ||
container: string; | ||
description: string; | ||
discordPreview: string; | ||
header: string; | ||
logo: string; | ||
socials: string; | ||
theme: string; | ||
}; | ||
|
||
export type ClassNames = keyof Styles; | ||
|
||
declare const styles: Styles; | ||
|
||
export default styles; |
Oops, something went wrong.
5b14b03
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
membership-portal-ui-v2 – ./
membership-portal-ui-v2-acmucsd.vercel.app
membership-portal-ui-v2.vercel.app
v2.members.acmucsd.com
membership-portal-ui-v2-git-main-acmucsd.vercel.app