diff --git a/client/postcss.config.js b/client/postcss.config.js
index 12a703d9..a5a6ff85 100644
--- a/client/postcss.config.js
+++ b/client/postcss.config.js
@@ -1,5 +1,6 @@
module.exports = {
plugins: {
+ "postcss-import": {},
tailwindcss: {},
autoprefixer: {},
},
diff --git a/client/src/components/ui/RatingScale.vue b/client/src/components/ui/RatingScale.vue
new file mode 100644
index 00000000..60db8626
--- /dev/null
+++ b/client/src/components/ui/RatingScale.vue
@@ -0,0 +1,121 @@
+
+
+
+ {{ props.rating }} - {{ weight }} = {{style}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/client/src/pages/StyleGuidePage.vue b/client/src/pages/StyleGuidePage.vue
index 9f458609..980f565c 100644
--- a/client/src/pages/StyleGuidePage.vue
+++ b/client/src/pages/StyleGuidePage.vue
@@ -7,6 +7,7 @@ import ItDropdown from "@/components/ui/ItDropdown.vue";
import ItDropdownSelect from "@/components/ui/ItDropdownSelect.vue";
import ItRadioGroup from "@/components/ui/ItRadioGroup.vue";
import ItTextarea from "@/components/ui/ItTextarea.vue";
+import RatingScale from "@/components/ui/RatingScale.vue";
import logger from "loglevel";
import { reactive, ref } from "vue";
@@ -424,6 +425,13 @@ function log(data: any) {
:label="satisfactionText"
:items="satisfactionValues"
/>
+
+
+
+
+
+
+