Skip to content
This repository has been archived by the owner on Oct 30, 2024. It is now read-only.

Commit

Permalink
Merge remote-tracking branch 'origin/main' into feature/technotespage…
Browse files Browse the repository at this point in the history
…refresh
  • Loading branch information
andrewmcgivery committed Jan 16, 2024
2 parents d43a00a + 212c92c commit 7bed666
Show file tree
Hide file tree
Showing 12 changed files with 17 additions and 12 deletions.
7 changes: 6 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: 2.1

orbs:
secops: apollo/circleci-secops-orb@2.0.1
secops: apollo/circleci-secops-orb@2.0.6

workflows:
security-scans:
Expand All @@ -13,3 +13,8 @@ workflows:
- secops-oidc
git-base-revision: <<#pipeline.git.base_revision>><<pipeline.git.base_revision>><</pipeline.git.base_revision >>
git-revision: << pipeline.git.revision >>
- secops/semgrep:
context:
- secops-oidc
- github-orb
git-base-revision: <<#pipeline.git.base_revision>><<pipeline.git.base_revision>><</pipeline.git.base_revision >>
2 changes: 1 addition & 1 deletion src/@chakra-ui/gatsby-plugin/theme.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ const theme = extendTheme({
Text: {
baseStyle: {
lineHeight: '1.8rem',
fontSize: 'md'
fontSize: 'lg'
}
},
Table: {
Expand Down
2 changes: 1 addition & 1 deletion src/components/Blockquote.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default function Blockquote({children, ...props}) {
py="1"
borderLeftWidth="2px"
borderColor="primary"
fontSize="md"
fontSize="lg"
sx={{
'>': {
':not(:last-child)': {
Expand Down
2 changes: 1 addition & 1 deletion src/components/Caution.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export const Caution = ({children, ...props}) => {
py="1"
borderLeftWidth="4px"
borderColor="yellow.400"
fontSize="md"
fontSize="lg"
sx={{
'>': {
':not(:last-child)': {
Expand Down
2 changes: 1 addition & 1 deletion src/components/EnterpriseFeature.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export const EnterpriseFeature = ({children}) => {
py="1"
borderLeftWidth="2px"
borderColor="primary"
fontSize="md"
fontSize="lg"
sx={{
'>': {
':not(:last-child)': {
Expand Down
2 changes: 1 addition & 1 deletion src/components/ExperimentalFeature.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const ExperimentalFeature = ({
py="1"
borderLeftWidth="2px"
borderColor="primary"
fontSize="md"
fontSize="lg"
sx={{
'>': {
':not(:last-child)': {
Expand Down
2 changes: 1 addition & 1 deletion src/components/GlossaryPage/Results.js
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ const Results = () => {
my="4"
borderLeftWidth="2px"
borderColor="primary"
fontSize="md"
fontSize="lg"
sx={{
'>': {
':not(:last-child)': {
Expand Down
2 changes: 1 addition & 1 deletion src/components/HomePage.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export function Odyssey() {
}}
>
<div>
<Text fontSize="md">
<Text fontSize="lg">
<strong>Welcome!</strong> 👋 Our learning platform, Odyssey, provides{' '}
<strong>interactive tutorials</strong> with videos and code challenges
to help you launch your journey with GraphQL and Apollo.
Expand Down
2 changes: 1 addition & 1 deletion src/components/Note.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export const Note = ({children, ...props}) => {
py="1"
borderLeftWidth="4px"
borderColor="gray.400"
fontSize="md"
fontSize="lg"
sx={{
'>': {
':not(:last-child)': {
Expand Down
2 changes: 1 addition & 1 deletion src/components/PreviewFeature.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const PreviewFeature = ({
py="1"
borderLeftWidth="2px"
borderColor="primary"
fontSize="md"
fontSize="lg"
sx={{
'>': {
':not(:last-child)': {
Expand Down
2 changes: 1 addition & 1 deletion src/components/Tip.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export const Tip = ({children, ...props}) => {
py="1"
borderLeftWidth="4px"
borderColor="green.400"
fontSize="md"
fontSize="lg"
sx={{
'>': {
':not(:last-child)': {
Expand Down
2 changes: 1 addition & 1 deletion src/components/TypeScriptApiBox.js
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@ export default function TypeScriptApiBox({name}) {
</Thead>
<Tbody>
{group.members.map((member, index) => (
<Tr key={index} fontSize="md">
<Tr key={index} fontSize="lg">
<Td sx={{code: {bg: 'none', p: 0}}}>
<chakra.h6 fontSize="lg" mb="1">
<InlineCode>{member.name}</InlineCode>
Expand Down

0 comments on commit 7bed666

Please sign in to comment.