diff --git a/apps/website/.lagoon.env b/apps/website/.lagoon.env index 1f5bcd4b8..1c5898aad 100644 --- a/apps/website/.lagoon.env +++ b/apps/website/.lagoon.env @@ -1,3 +1,4 @@ +PROJECT_NAME=example DRUPAL_INTERNAL_URL="http://nginx:8080" DRUPAL_EXTERNAL_URL="https://nginx.${LAGOON_ENVIRONMENT}.${LAGOON_PROJECT}.ch4.amazee.io" NETLIFY_URL="https://build.${LAGOON_ENVIRONMENT}.${LAGOON_PROJECT}.ch4.amazee.io" @@ -20,7 +21,7 @@ PUBLISHER_OAUTH2_SESSION_SECRET=REPLACE_ME # "development" or "production", production will trust first proxy # and serve secure cookies. -PUBLISHER_OAUTH2_ENVIRONMENT_TYPE=production +PUBLISHER_OAUTH2_ENVIRONMENT_TYPE=development # DRUPAL_EXTERNAL_URL is used by default, but can be overridden # to match the Drupal production url, without the nginx prefix. diff --git a/apps/website/.lagoon.env.dev b/apps/website/.lagoon.env.dev index 89379ad89..f53dd6958 100644 --- a/apps/website/.lagoon.env.dev +++ b/apps/website/.lagoon.env.dev @@ -1,5 +1,3 @@ -PROJECT_NAME=example -DRUPAL_INTERNAL_URL="http://nginx:8080" DRUPAL_EXTERNAL_URL="https://${LAGOON_GIT_BRANCH}-${PROJECT_NAME}.cms.amazeelabs.dev" NETLIFY_URL="https://${LAGOON_GIT_BRANCH}-${PROJECT_NAME}.amazeelabs.dev" @@ -7,22 +5,6 @@ NETLIFY_URL="https://${LAGOON_GIT_BRANCH}-${PROJECT_NAME}.amazeelabs.dev" # Publisher authentication with Drupal (OAuth2). # See main ./README.md for more information. # ----------------------------------------------- -# Set to true to fully skip authentication. -PUBLISHER_SKIP_AUTHENTICATION=false - -# Secret from the Drupal Publisher Consumer. -PUBLISHER_OAUTH2_CLIENT_SECRET=REPLACE_ME - -# Client id from the Drupal Publisher Consumer. -PUBLISHER_OAUTH2_CLIENT_ID=publisher - -# A random string, used to encrypt the session. -PUBLISHER_OAUTH2_SESSION_SECRET=REPLACE_ME - -# "development" or "production", production will trust first proxy -# and serve secure cookies. -PUBLISHER_OAUTH2_ENVIRONMENT_TYPE=production - # DRUPAL_EXTERNAL_URL is used by default, but can be overridden # to match the Drupal production url, without the nginx prefix. PUBLISHER_OAUTH2_TOKEN_HOST="${DRUPAL_EXTERNAL_URL}" diff --git a/apps/website/.lagoon.env.prod b/apps/website/.lagoon.env.prod index 0cd30cc45..b44b6f5ab 100644 --- a/apps/website/.lagoon.env.prod +++ b/apps/website/.lagoon.env.prod @@ -1,5 +1,3 @@ -PROJECT_NAME=example -DRUPAL_INTERNAL_URL="http://nginx:8080" DRUPAL_EXTERNAL_URL="https://example.cms.amazeelabs.dev" NETLIFY_URL="https://example.amazeelabs.dev" @@ -7,18 +5,6 @@ NETLIFY_URL="https://example.amazeelabs.dev" # Publisher authentication with Drupal (OAuth2). # See main ./README.md for more information. # ----------------------------------------------- -# Set to true to fully skip authentication. -PUBLISHER_SKIP_AUTHENTICATION=false - -# Secret from the Drupal Publisher Consumer. -PUBLISHER_OAUTH2_CLIENT_SECRET=REPLACE_ME - -# Client id from the Drupal Publisher Consumer. -PUBLISHER_OAUTH2_CLIENT_ID=publisher - -# A random string, used to encrypt the session. -PUBLISHER_OAUTH2_SESSION_SECRET=REPLACE_ME - # "development" or "production", production will trust first proxy # and serve secure cookies. PUBLISHER_OAUTH2_ENVIRONMENT_TYPE=production diff --git a/apps/website/.lagoon.env.stage b/apps/website/.lagoon.env.stage index 89379ad89..96ed313a8 100644 --- a/apps/website/.lagoon.env.stage +++ b/apps/website/.lagoon.env.stage @@ -1,5 +1,3 @@ -PROJECT_NAME=example -DRUPAL_INTERNAL_URL="http://nginx:8080" DRUPAL_EXTERNAL_URL="https://${LAGOON_GIT_BRANCH}-${PROJECT_NAME}.cms.amazeelabs.dev" NETLIFY_URL="https://${LAGOON_GIT_BRANCH}-${PROJECT_NAME}.amazeelabs.dev" @@ -7,18 +5,6 @@ NETLIFY_URL="https://${LAGOON_GIT_BRANCH}-${PROJECT_NAME}.amazeelabs.dev" # Publisher authentication with Drupal (OAuth2). # See main ./README.md for more information. # ----------------------------------------------- -# Set to true to fully skip authentication. -PUBLISHER_SKIP_AUTHENTICATION=false - -# Secret from the Drupal Publisher Consumer. -PUBLISHER_OAUTH2_CLIENT_SECRET=REPLACE_ME - -# Client id from the Drupal Publisher Consumer. -PUBLISHER_OAUTH2_CLIENT_ID=publisher - -# A random string, used to encrypt the session. -PUBLISHER_OAUTH2_SESSION_SECRET=REPLACE_ME - # "development" or "production", production will trust first proxy # and serve secure cookies. PUBLISHER_OAUTH2_ENVIRONMENT_TYPE=production diff --git a/packages/ui/src/components/Atoms/List.css b/packages/ui/src/components/Atoms/List.css index 011eef971..405eba818 100644 --- a/packages/ui/src/components/Atoms/List.css +++ b/packages/ui/src/components/Atoms/List.css @@ -1,7 +1,3 @@ -ul li { - @apply !font-medium !text-gray-900; -} - ul { @apply !pl-4; } @@ -13,7 +9,6 @@ ul { position: relative; padding-left: 0.625rem; margin-left: 0; - line-height: 1.25rem !important; } ul li::marker { @@ -27,6 +22,7 @@ ul li.messages::marker { .list-style--arrows li::before { position: absolute; + top: 0.2rem; left: -1.25rem; line-height: 1.25rem; height: 1.25rem; @@ -36,6 +32,7 @@ ul li.messages::marker { .list-style--checkmarks li::before { position: absolute; + top: 0.2rem; left: -1.125rem; line-height: 1.25rem; height: 1.25rem; @@ -47,6 +44,7 @@ ul li.messages::marker { .list-style--question-marks li::before { position: absolute; left: -1.125rem; + top: 0.2rem; vertical-align: middle; line-height: 1.25rem; height: 1.25rem;