Skip to content

Commit 2b407dd

Browse files
LukeSultzeraxdyvjeydinpham
authored
Style/landing dev logo (#75)
* Added ACM Dev logo, and made title and searchbar container a little bigger. * feat: PLEASE WORK PLEASE WORK --------- Co-authored-by: axdyv <110048707+axdyv@users.noreply.github.com> Co-authored-by: Jeydin21 <JeyPham21@gmail.com>
1 parent 0442aa2 commit 2b407dd

File tree

4 files changed

+20
-8
lines changed

4 files changed

+20
-8
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111
deploy:
12-
runs-on: ubuntu-20.04
12+
runs-on: ubuntu-latest
1313
concurrency:
1414
group: ${{ github.workflow }}-${{ github.ref }}
1515
cancel-in-progress: true

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
build_and_test:
11-
runs-on: ubuntu-20.04
11+
runs-on: ubuntu-latest
1212
concurrency:
1313
group: ${{ github.workflow }}-${{ github.ref }}
1414
cancel-in-progress: true

client/public/ACMDev-logo.png

4.35 KB
Loading

client/src/pages/index.tsx

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const Content = styled.div`
1717

1818
const Main = styled.div`
1919
width: 100%;
20-
margin-top: 100px;
20+
margin-top: 50px;
2121
`;
2222

2323
const Header = styled.h2`
@@ -28,7 +28,7 @@ const Header = styled.h2`
2828
font-weight: 300;
2929
letter-spacing: 2px;
3030
font-size: 26px;
31-
margin-bottom: 15px;
31+
margin-bottom: 20px;
3232
`;
3333

3434
const Description = styled.p`
@@ -44,6 +44,19 @@ const HeaderBold = styled.span`
4444
font-weight: 700;
4545
`;
4646

47+
const SmallFont = styled.span`
48+
font-size: 12px;
49+
`;
50+
51+
const Logo = {
52+
height: "36px",
53+
width: "36px",
54+
marginTop: "-8px",
55+
56+
};
57+
58+
59+
4760
export default function Home() {
4861
function handleSubmit({ search }: SearchQuery) {
4962
(async function () {
@@ -58,16 +71,15 @@ export default function Home() {
5871
<Core>
5972
<Content>
6073
<Main>
61-
<Col lg={{ span: 8, offset: 8 }} xs={{ span: 20, offset: 2 }}>
74+
<Col lg={{ span: 10, offset: 7}} xs={{ span: 20, offset: 2 }}>
6275
<FadeIn delay={0}>
6376
<Header>
64-
<HeaderBold>UTD</HeaderBold> Grades
77+
<img src="/ACMDev-logo.png" style={Logo}/> <HeaderBold>UTD</HeaderBold> Grades <SmallFont> by <HeaderBold>ACM</HeaderBold></SmallFont>
6578
</Header>
6679
</FadeIn>
6780
<FadeIn delay={300}>
6881
<Description>
69-
See how students did in any given class. And it&apos;s{" "}
70-
<strong>free, forever.</strong>
82+
See how students did in any given class. And it's<strong> free, forever.</strong>
7183
</Description>
7284
</FadeIn>
7385
<Search onSubmit={handleSubmit} />

0 commit comments

Comments
 (0)