Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue 47leftalign #73

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 3 additions & 37 deletions .prettierignore
Copy link
Contributor

@seanquiambao seanquiambao Nov 13, 2024

Choose a reason for hiding this comment

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

revert this (.prettierignore), these are needed.

Original file line number Diff line number Diff line change
@@ -1,37 +1,3 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# next.js
/.next/
/out/

# production
/build

# misc
.DS_Store
*.pem

# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# local env files
.env*.local

# vercel
.vercel

# typescript
*.tsbuildinfo
next-env.d.ts

.env
# Ignore artifacts:
build
coverage
4 changes: 1 addition & 3 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
{
"plugins": ["prettier-plugin-tailwindcss"]
}
{}
141 changes: 141 additions & 0 deletions leftalign.html
Copy link
Contributor

@seanquiambao seanquiambao Nov 13, 2024

Choose a reason for hiding this comment

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

remove this file (leftalign.html), the page has already been made for you. the issue requires you to fix a file.

Copy link
Contributor

Choose a reason for hiding this comment

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

the page you are looking for is the user applications page.
visit /user/applications/anythinghere/apply

Original file line number Diff line number Diff line change
@@ -0,0 +1,141 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<style>
body {
height: 50%;
position: fixed;
}

.inside_container {
display: flex;
justify-content: center;
}

.block {
display: flex;
justify-content: center;
}

p {
margin: 0;
line-height: 1.5;
}

#next {
display: inline;
width: 60px;
padding: 5px 10px 5px 10px;
border-radius: 5px;
background-color: black;
color: white;
}

#tailwind {
display: inline;
width: 90px;
padding: 5px 10px 5px 10px;
border-radius: 5px;
background-color: #38bdf9;
color: white;
}

#type {
display: inline;
width: 80px;
padding: 5px 10px 5px 10px;
border-radius: 5px;
background-color: #3078c6;
color: white;
}

h4 {
display: flex;
justify-content: center;
color: #173967;
}
</style>

<body>
<h4>ACM Ignite Fall 2024</h4>
<p>
ACM Ignite Fall 2024 Lorem Ipsum is simply dummy text of the printing and
typesetting industry. Lorem Ipsum has been the industry's standard dummy
text ever since the 1500s, when an unknown printer took a galley of type
and scrambled it to make a type specimen book. It has survived not only
five centuries, but also the leap into electronic typesetting, remaining
essentially unchanged. It was popularised in the 1960s with the release of
Letraset sheets containing Lorem Ipsum passages, and more recently with
desktop publishing software like Aldus PageMaker including versions of
Lorem Ipsum.
</p>

<br />

<div class="outside_contianer">
<div class="inside_container">
<div id="block">
<p>Organization 1</p>
<div class="box_containers">
<p id="next">Next.js</p>
<p id="tailwind">TailwindCSS</p>
<p id="type">Typescript</p>
</div>
<p>This is a very cool organization</p>
</div>
</div>

<div class="inside_container">
<div id="block">
<p>Organization 1</p>
<div class="box_containers">
<p id="next">Next.js</p>
<p id="tailwind">TailwindCSS</p>
<p id="type">Typescript</p>
</div>
<p>This is a very cool organization</p>
</div>
</div>

<div class="inside_container">
<div id="block">
<p>Organization 1</p>
<div class="box_containers">
<p id="next">Next.js</p>
<p id="tailwind">TailwindCSS</p>
<p id="type">Typescript</p>
</div>
<p>This is a very cool organization</p>
</div>
</div>

<div class="inside_container">
<div id="block">
<p>Organization 1</p>
<div class="box_containers">
<p id="next">Next.js</p>
<p id="tailwind">TailwindCSS</p>
<p id="type">Typescript</p>
</div>
<p>This is a very cool organization</p>
</div>
</div>

<div class="inside_container">
<div id="block">
<p>Organization 1</p>
<div class="box_containers">
<p id="next">Next.js</p>
<p id="tailwind">TailwindCSS</p>
<p id="type">Typescript</p>
</div>
<p>This is a very cool organization</p>
</div>
</div>
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"globals": "^15.9.0",
"husky": "^9.1.4",
"postcss": "^8.4.40",
"prettier": "^3.3.3",
"prettier": "3.3.3",
"prettier-plugin-tailwindcss": "^0.6.5",
"tailwindcss": "^3.4.7",
"tailwindcss-animate": "^1.0.7",
Expand Down
Loading