diff --git a/example/pages/HomePage.tsx b/example/pages/HomePage.tsx
index ffa8a9b..4bad050 100644
--- a/example/pages/HomePage.tsx
+++ b/example/pages/HomePage.tsx
@@ -1,10 +1,51 @@
-import { Title } from '@the-curve-consulting/texmo-react-components';
+import { InfoTile, Title } from '@the-curve-consulting/texmo-react-components';
+import { Row, Col } from 'react-bootstrap';
const HomePage = () => {
return (
-
-
-
+ <>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ >
)
}
diff --git a/package.json b/package.json
index 35f3851..685be88 100644
--- a/package.json
+++ b/package.json
@@ -4,7 +4,7 @@
"type": "git",
"url": "https://github.com/the-curve-consulting/texmo-react-components.git"
},
- "version": "0.1.0",
+ "version": "0.2.0",
"description": "",
"main": "dist/index.min.js",
"module": "dist/index.es.js",
diff --git a/rollup.config.js b/rollup.config.js
index cb996ba..91c21c2 100644
--- a/rollup.config.js
+++ b/rollup.config.js
@@ -37,7 +37,7 @@ module.exports = {
plugins: [
external(),
postcss({
- modules: true,
+ modules: false,
extract: true,
}),
// Allow json resolution
diff --git a/scss/App.scss b/scss/App.scss
index 843aea7..7bae58f 100644
--- a/scss/App.scss
+++ b/scss/App.scss
@@ -22,8 +22,8 @@ h1 {
}
.nav-link.active {
- background-color: var(--texmo-bg-secondary);
- color: var(--texmo-text-color);
+ background-color: var(--texmo-bg-secondary) !important;
+ color: var(--texmo-text-color) !important;
}
}
diff --git a/scss/texmo-react-components.scss b/scss/texmo-react-components.scss
index a5d0c3e..f8606f8 100644
--- a/scss/texmo-react-components.scss
+++ b/scss/texmo-react-components.scss
@@ -10,4 +10,3 @@
@import '../src/components/button/Button.scss';
@import '../src/components/title/Title.scss';
@import '../src/components/card/Card.scss';
-@import '../src/components/form/components/FormRichText.scss';
diff --git a/src/components/form/components/FormRichText.scss b/src/components/form/components/FormRichText.scss
deleted file mode 100644
index c4f0e4d..0000000
--- a/src/components/form/components/FormRichText.scss
+++ /dev/null
@@ -1 +0,0 @@
-@import '../node_modules/react-quill/dist/quill.snow.css';
\ No newline at end of file
diff --git a/src/components/infoTile/InfoTile.tsx b/src/components/infoTile/InfoTile.tsx
index e006d5d..a818c56 100644
--- a/src/components/infoTile/InfoTile.tsx
+++ b/src/components/infoTile/InfoTile.tsx
@@ -16,7 +16,7 @@ const InfoTile = ({ icon, children }: InfoTileProps) => {
-
+
{children}
diff --git a/src/components/infoTile/components/InfoTileItem.tsx b/src/components/infoTile/components/InfoTileItem.tsx
index d393bbf..4c8e046 100644
--- a/src/components/infoTile/components/InfoTileItem.tsx
+++ b/src/components/infoTile/components/InfoTileItem.tsx
@@ -17,7 +17,7 @@ const InfoTileItem = ({
{text}
- {value}
+ {value}
);
diff --git a/src/components/title/Title.tsx b/src/components/title/Title.tsx
index a49936a..27b9069 100644
--- a/src/components/title/Title.tsx
+++ b/src/components/title/Title.tsx
@@ -6,7 +6,7 @@ export interface TitleProps extends React.HTMLProps {
const Title = ({ text, ...rest }: TitleProps) => {
return (
-
+
{text}
);