File tree Expand file tree Collapse file tree 4 files changed +20
-8
lines changed
Expand file tree Collapse file tree 4 files changed +20
-8
lines changed Original file line number Diff line number Diff line change 99
1010jobs :
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
Original file line number Diff line number Diff line change 88
99jobs :
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
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ const Content = styled.div`
1717
1818const Main = styled . div `
1919 width: 100%;
20- margin-top: 100px ;
20+ margin-top: 50px ;
2121` ;
2222
2323const 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
3434const 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+
4760export 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'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 } />
You can’t perform that action at this time.
0 commit comments