Skip to content

Commit

Permalink
Merge pull request #49 from ubie-oss/add-ux-writing-rule
Browse files Browse the repository at this point in the history
add ux writing guideline
  • Loading branch information
takanorip authored Apr 20, 2024
2 parents 7ba4b10 + d733036 commit f5ba7df
Show file tree
Hide file tree
Showing 4 changed files with 271 additions and 1 deletion.
11 changes: 11 additions & 0 deletions src/components/astro/Markdown.astro
Original file line number Diff line number Diff line change
Expand Up @@ -126,4 +126,15 @@
background-color: var(--color-primary);
border-radius: var(--radius-sm);
}

.markdown :global(thead) {
background-color: var(--color-background-gray);
}

.markdown :global(th),
.markdown :global(td) {
padding: var(--size-spacing-xs);
border: 1px solid var(--color-border);
font-size: var(--text-body-sm-size);
}
</style>
5 changes: 5 additions & 0 deletions src/components/react/GlobalNavigation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,11 @@ const GlobalNavigation: FC<Props> = ({ currentPath, allComponentPostData }) => {
Icons
</GlobalNavigationLinkRoot>
</li>
<li>
<GlobalNavigationLinkRoot href="/ux-writing" current={isCurrent('/ux-writing')}>
UX Writing
</GlobalNavigationLinkRoot>
</li>
</ul>
</div>
</FocusTrap>
Expand Down
2 changes: 1 addition & 1 deletion src/layouts/BaseLayout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ const description =

<a href="https://github.com/ubie-oss/ubie-vitals-website" class="repositoryLink">
<Image src={GitHubMark} alt="GitHub Mark" width={17} />
View on GitHub
View on GitHub
</a>
</div>
</footer>
Expand Down
Loading

0 comments on commit f5ba7df

Please sign in to comment.