forked from EshaanAgg/LFXMM-Frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'EshaanAgg:main' into main
- Loading branch information
Showing
10 changed files
with
572 additions
and
449 deletions.
There are no files selected for viewing
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,15 @@ | ||
version: "3.8" | ||
|
||
services: | ||
api: | ||
image: eshaanagg/lfx-api | ||
environment: | ||
POSTGRE_CONN_URL: postgres://admin:admin@db:5432/lfx?sslmode=disable | ||
ports: | ||
- "8080:8080" | ||
links: | ||
- db | ||
db: | ||
image: eshaanagg/lfx-db | ||
ports: | ||
- "8079:5432" |
Large diffs are not rendered by default.
Oops, something went wrong.
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
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,41 @@ | ||
.card { | ||
transition-duration: 0.125s; | ||
background: rgba(255, 255, 255, 0.04); | ||
border-radius: 16px; | ||
box-shadow: 0 4px 15px rgba(50, 113, 113); | ||
border: 2px solid #07c e7; | ||
z-index: 2; | ||
} | ||
|
||
.card:hover { | ||
transform: scale(1.01); | ||
box-shadow: 0 0 10px rgba(69, 193, 255, 0.589); | ||
border: 3px solid #fff; | ||
} | ||
|
||
.btnStyle { | ||
transition-duration: 0.3s; | ||
} | ||
|
||
.btnStyle:hover { | ||
transform: scale(1.05); | ||
color: rgb(3 105 161); | ||
} | ||
|
||
.btnStyle { | ||
--clr: #fff; | ||
--outline: 2px solid var(--clr); | ||
color: var(--clr); | ||
outline: var(--outline); | ||
border: var(--outline); | ||
outline-offset: -2px; | ||
transition: outline-offset 200ms; | ||
border-radius: 20px; | ||
padding: 8px; | ||
} | ||
|
||
.btnStyle:hover, | ||
.btnStyle:focus { | ||
outline: var(--outline); | ||
outline-offset: 2px; | ||
} |
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
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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
type Organization = { | ||
id: string; | ||
name: string; | ||
description: string; | ||
logoUrl: string; | ||
skills: string[]; | ||
}; | ||
|