Skip to content

Commit f06a0f0

Browse files
committed
Minor web style updates
1 parent b9b26c9 commit f06a0f0

File tree

6 files changed

+42
-2165
lines changed

6 files changed

+42
-2165
lines changed

website/.yarn/install-state.gz

-196 KB
Binary file not shown.

website/plugins/docusaurus-tailwindcss-loader/index.js

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,25 @@
1-
2-
31
module.exports = function (context, options) {
2+
console.log("postcss-tailwindcss-loader");
43
return {
5-
name: 'postcss-tailwindcss-loader',
4+
name: "postcss-tailwindcss-loader",
65
configurePostCss(postcssOptions) {
76
const newOptions = {
8-
ident: 'postcss',
7+
ident: "postcss",
98
plugins: [
10-
require('postcss-import'),
11-
require('tailwindcss'),
9+
require("postcss-import"),
10+
require("tailwindcss"),
1211
require("postcss-preset-env")({
1312
autoprefixer: {
14-
flexbox: "no-2009",
13+
flexbox: "no-2009"
1514
},
16-
stage: 4,
15+
stage: 4
1716
})
18-
],
17+
]
18+
};
19+
return {
20+
...postcssOptions,
21+
...newOptions
1922
};
20-
return { ...postcssOptions, ...newOptions };
2123
}
2224
};
2325
};

website/src/pages/ui.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import { Panel } from "../partials/general/Panel";
55
import { CTACaret, CTAOutlinedButtonMixin, CTAOutlinedButtonWhiteMixin } from "../partials/styles";
66
import { DocsIconsView } from "../partials/DocsIconsView";
77
import { UIComponentsShowcase } from "../partials/ui/UIComponentsShowcase";
8-
import "@firecms/ui/index.css";
98

109
const UIPage: React.FC = () => {
1110
return (

website/src/partials/styles.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export const ContainerSmallMixin = "relative max-w-5xl mx-auto p-4";
1313
export const ContainerPaddingMixin = "py-12 md:py-16 p-4 md:p-8";
1414
export const ContainerInnerPaddingMixin = "px-8 py-8 md:px-8 md:py-12";
1515

16-
export const defaultBorderMixin = "border-solid border-slate-500 border-opacity-15 dark:border-slate-500 dark:border-opacity-15";
16+
export const defaultBorderMixin = "border-solid border-slate-500 border-opacity-40 dark:border-slate-500 dark:border-opacity-40";
1717

1818

1919
export const CTACaret = () => <svg aria-hidden="true"

website/src/partials/ui/UIComponentsShowcase.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
1-
import "@firecms/ui/index.css";
21
import React, { Suspense } from "react";
32
import BrowserOnly from "@docusaurus/BrowserOnly";
43

5-
64
const LazyClientUIComponentsShowcase = React.lazy(() => import("./ClientUIComponentsShowcase"));
75

86
export function UIComponentsShowcase() {

0 commit comments

Comments
 (0)