-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* create site modal p1 * Merge * create and edit site * small fixes after merge * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
- Loading branch information
1 parent
f04effa
commit 3a67abb
Showing
35 changed files
with
1,517 additions
and
922 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
18 changes: 0 additions & 18 deletions
18
canopeum_backend/canopeum_backend/migrations/0002_add_is_public_to_site.py
This file was deleted.
Oops, something went wrong.
Binary file added
BIN
+409 KB
canopeum_backend/canopeum_backend/seeding/images/20240404225633624380site_img.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+409 KB
canopeum_backend/canopeum_backend/seeding/images/20240404225633630396site_img.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+409 KB
canopeum_backend/canopeum_backend/seeding/images/20240417185119716176site_img.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+409 KB
canopeum_backend/canopeum_backend/seeding/images/20240417185119725610site_img.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -1,11 +1,28 @@ | ||
@import "bootstrap/scss/functions"; | ||
@import "bootstrap/scss/mixins"; | ||
@import "bootstrap/scss/variables"; | ||
@import "../node_modules/bootstrap/scss/functions"; | ||
|
||
@import "@assets/styles/theme-variables.module"; | ||
$primary: #007E51; | ||
$secondary: #F18200; | ||
$border-radius: 0.5rem; | ||
$link-decoration: none; | ||
$green: #06C270; | ||
|
||
$font-family-sans-serif: -apple-system, BlinkMacSystemFont, 'Lato', Roboto, 'Helvetica Neue', Arial, sans-serif; | ||
$font-family-monospace: 'Helvetica Neue', Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace; | ||
$font-family-base: $font-family-sans-serif; | ||
$headings-font-family: Lato; | ||
|
||
$headings-font-weight: 700; | ||
|
||
@import "bootstrap/scss/bootstrap"; | ||
|
||
@import "rsuite/dist/rsuite.min.css"; | ||
|
||
@import "./assets/styles/GlobalStyles.scss"; | ||
|
||
@import "../node_modules/bootstrap/scss/variables"; | ||
@import "../node_modules/bootstrap/scss/mixins"; | ||
|
||
@import "../node_modules/bootstrap/scss/bootstrap.scss"; | ||
|
||
$navbar-dark-toggler-border-color: rgba($white, 1); | ||
$card-bg: $cream; | ||
$accordion-bg: $cream; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,7 @@ | ||
@import '../../App.scss'; | ||
|
||
:export { | ||
primary: $primary; | ||
secondary: $secondary; | ||
success: map-get($theme-colors, success); | ||
} |
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
Oops, something went wrong.