Skip to content

Commit

Permalink
style: simplify font family configuration and clean up CSS styles
Browse files Browse the repository at this point in the history
  • Loading branch information
SutuSebastian committed Jan 4, 2025
1 parent 2972e96 commit b877faa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 47 deletions.
2 changes: 1 addition & 1 deletion apps/web/styles/docs.css
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
#mainContent > p > code,
#mainContent > ul > li > code,
#mainContent > ol > li > code {
@apply whitespace-nowrap break-all rounded-sm bg-gray-50 px-1 font-mono text-sm text-primary-600;
@apply whitespace-nowrap break-all rounded-sm bg-gray-50 px-1 text-sm text-primary-600;
font-family:
Menlo,
ui-monospace,
Expand Down
47 changes: 1 addition & 46 deletions apps/web/tailwind.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -42,52 +42,7 @@ module.exports = {
},
},
fontFamily: {
sans: [
"var(--font-inter)",
"Inter",
"ui-sans-serif",
"system-ui",
"-apple-system",
"system-ui",
"Segoe UI",
"Roboto",
"Helvetica Neue",
"Arial",
"Noto Sans",
"sans-serif",
"Apple Color Emoji",
"Segoe UI Emoji",
"Segoe UI Symbol",
"Noto Color Emoji",
],
body: [
"Inter",
"ui-sans-serif",
"system-ui",
"-apple-system",
"system-ui",
"Segoe UI",
"Roboto",
"Helvetica Neue",
"Arial",
"Noto Sans",
"sans-serif",
"Apple Color Emoji",
"Segoe UI Emoji",
"Segoe UI Symbol",
"Noto Color Emoji",
],
mono: [
"var(--font-roboto-mono)",
"ui-monospace",
"SFMono-Regular",
"Menlo",
"Monaco",
"Consolas",
"Liberation Mono",
"Courier New",
"monospace",
],
sans: ["var(--font-inter)"],
},
},
plugins: [flowbite],
Expand Down

0 comments on commit b877faa

Please sign in to comment.