Skip to content

Commit

Permalink
Fix/layout size and scroll effect (#3351)
Browse files Browse the repository at this point in the history
* refactor(web): [Layout] add app container component

* refactor(web): [Header] make the global header fixed on scroll

* refactor(web): [Footer] make the global footer fixed dynamically on scroll and setup on the layout

* refactor(web): [Layout] update specific position of elements using z-index

* fix(web): layout size

* refactor(web): [Layout] update layout height

* refactor(web): [UserTeamCard] fix size on resizing and w-max

* fix(web): add scroll effect on team-members-card-view

* refactor(web): [Layout] add resize component to global layout

* refactor(web): fix body bg in light mode, make main header fixed on tasks pages and profile page

* fix(web): [Setting] setting page layout

* fix(web): [Eslint] error and add an environnement variable for checking build without eslint errors

* refactor(web): fixed task detail header

* docs(web): add main-layout docs

* docs(web): add main-layout docs

* refactor(web): fix my-tasks page

* fix(web): [Profile] fix outstanding task overflow

* fix(web): fix footer fixed on timesheet, settings and kanban pages

* refactor(web): [Kanban] add a dynamic height on kanban item

* fix(web): [Kanban] fix kanban overscroll

* fix(web): [Dashboard] fix breadcum size

* fix(web): [Team's Tasks'] fix space on team's tasks page

* refactor(web): [Profile] optimize space on profile page

* refactor(web): [Timesheet] optimize spaces on reports/timesheet page

* fix(web): [Setting] double scroll on setting page

* test: build
  • Loading branch information
NdekoCode authored Nov 20, 2024
1 parent bc63849 commit 9ab591b
Show file tree
Hide file tree
Showing 67 changed files with 3,630 additions and 3,438 deletions.
4 changes: 4 additions & 0 deletions apps/web/.env
Original file line number Diff line number Diff line change
Expand Up @@ -133,3 +133,7 @@ NEXT_PUBLIC_CHATWOOT_API_KEY=
# PostHog
NEXT_PUBLIC_POSTHOG_KEY=
NEXT_PUBLIC_POSTHOG_HOST=https://us.i.posthog.com

# Warning: IF TRUE This allows production builds to successfully complete even if
# your project has ESLint errors.
NEXT_IGNORE_ESLINT_ERROR_ON_BUILD=true
4 changes: 4 additions & 0 deletions apps/web/.env.sample
Original file line number Diff line number Diff line change
Expand Up @@ -83,3 +83,7 @@ NEXT_PUBLIC_MEET_DOMAIN="meet.ever.team"
# Private Variables (Meet)
MEET_JWT_APP_ID=ever_teams
MEET_JWT_APP_SECRET=

# Warning: IF TRUE This allows production builds to successfully complete even if
# your project has ESLint errors.
NEXT_IGNORE_ESLINT_ERROR_ON_BUILD=true
Loading

0 comments on commit 9ab591b

Please sign in to comment.