-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: update packages version * feat: postcss plugins setup * feat: update theme object and globalStyles * feat: change basic Mantine NextJS configuration * feat: update Header in pageConfig * fix: replace export with module.exports for postcss.config * feat: update Footer and MainLayout in PageConfig * feat: update UnauthorizedLayout in PageConfig * refactor: use display style prop instead of css * refactor: reorder style properties * feat: update MainLayout * feat: update page 404 * feat: update expire-token page * feat: update forgot-password page * feat: update home page * feat: update sign-in page * feat: update sign-up page * feat: add variablesResolver for custom CSS variables creation * feat: update profile page * feat: update reset-password page * feat: update Table * feat: update Link * refactor: code style, use postcss features * refactor: move components styling from theme to separate files * refactor: extract theme components styles to css modules * feat: update button in table heading cell * fix: typo in unauthorized layout image styles * fix: Password and Text input invalid styles * fix: table styles by using Mantine table tags * feat: update Unauthorized layout to use Mantine component * refactor: code style * refactor: code style * refactor: remove comments * refactor: fix typo * refactor: code style * refactor: replace default export with named export, reorder alphabetically * refactor: rename components css files * refactor: rename css files for pages * refactor: remove variablesResolver and global css styles as useless * refactor: use hiddenFrom instead of media query in Unauthorized layout * feat: update PhotoUpload
- Loading branch information
Showing
53 changed files
with
818 additions
and
753 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,14 @@ | ||
module.exports = { | ||
plugins: { | ||
'postcss-preset-mantine': {}, | ||
'postcss-simple-vars': { | ||
variables: { | ||
'mantine-breakpoint-xs': '36em', | ||
'mantine-breakpoint-sm': '48em', | ||
'mantine-breakpoint-md': '62em', | ||
'mantine-breakpoint-lg': '75em', | ||
'mantine-breakpoint-xl': '88em', | ||
}, | ||
}, | ||
}, | ||
}; |
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,26 @@ | ||
.link { | ||
display: flex; | ||
gap: 5px; | ||
|
||
color: var(--mantine-color-blue-5); | ||
|
||
pointer-events: initial; | ||
|
||
&:hover { | ||
color: var(--mantine-color-blue-2); | ||
} | ||
} | ||
|
||
.disabled { | ||
color: var(--mantine-color-gray-2); | ||
|
||
pointer-events: none; | ||
|
||
&:hover { | ||
color: var(--mantine-color-gray-2); | ||
} | ||
} | ||
|
||
.nextLinkUnderlineNone { | ||
text-decoration: none; | ||
} |
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 was deleted.
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 was deleted.
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
3 changes: 3 additions & 0 deletions
3
template/apps/web/src/components/Table/thead/thead.module.css
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,3 @@ | ||
.headerButton { | ||
justify-content: space-between; | ||
} |
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
5 changes: 5 additions & 0 deletions
5
template/apps/web/src/pages/_app/PageConfig/MainLayout/Footer/index.module.css
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,5 @@ | ||
.footer { | ||
border: none; | ||
|
||
flex: 0 1 auto; | ||
} |
21 changes: 10 additions & 11 deletions
21
template/apps/web/src/pages/_app/PageConfig/MainLayout/Footer/index.tsx
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
6 changes: 6 additions & 0 deletions
6
...src/pages/_app/PageConfig/MainLayout/Header/components/ShadowLoginBanner/index.module.css
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,6 @@ | ||
.banner { | ||
border-radius: 0; | ||
|
||
justify-content: center; | ||
align-items: center; | ||
} |
Oops, something went wrong.