diff --git a/src/content/meta/design.mdx b/src/content/meta/design.mdx index 98b9703..fc9c024 100644 --- a/src/content/meta/design.mdx +++ b/src/content/meta/design.mdx @@ -192,7 +192,7 @@ Varie sezioni del sito utilizzano diverse palette di colori. Questa è la palett I combo box sono un componente per fare dropdown scritto in Preact. Questo è un esempio di come funzionano. ```js -import { ComboBox } from '$lib/components/ComboBox' +import { ComboBox } from '@/lib/components/ComboBox' const [value, setValue] = useState('option-1') ``` diff --git a/src/styles/pages.scss b/src/styles/pages.scss index 04731e3..21e1196 100644 --- a/src/styles/pages.scss +++ b/src/styles/pages.scss @@ -440,11 +440,11 @@ // background horizontal linear gradient that is black in the center background: linear-gradient( to right, - #e0ffc511 0%, - #e0ffc533 25%, - #e0ffc599 50%, - #e0ffc533 75%, - #e0ffc511 100% + #ffe4c544 0%, + // #ffe4c599 25%, + #ffe4c5ff 50%, + // #ffe4c599 75%, + #ffe4c544 100% ); } }