diff --git a/assets/styles/layout/_topbar.scss b/assets/styles/layout/_topbar.scss index a1f4c4603..1b24ae875 100644 --- a/assets/styles/layout/_topbar.scss +++ b/assets/styles/layout/_topbar.scss @@ -6,7 +6,7 @@ left: 250px; width: calc(100% - 250px); z-index: 1100; - border-bottom: 1px solid var(--surface-border); + transition: background-color 1s; .layout-topbar-inner { height: 100%; @@ -40,4 +40,21 @@ font-size: 1.5rem; } } +} + + +.layout-wrapper-light { + .layout-topbar { + &.layout-topbar-sticky { + background-color: rgba(255,255,255,.7); + } + } +} + +.layout-wrapper-dark { + .layout-topbar { + &.layout-topbar-sticky { + background-color: rgba(0,0,0,.3); + } + } } \ No newline at end of file diff --git a/nuxt.config.js b/nuxt.config.js index e0cc96cfa..0a1816d13 100644 --- a/nuxt.config.js +++ b/nuxt.config.js @@ -48,17 +48,6 @@ export default defineNuxtConfig({ strategy: 'lazyOnload', src: 'https://www.googletagmanager.com/gtag/js?id=UA-93461466-1' }, - { - id: 'ga-analytics', - strategy: 'lazyOnload', - children: ` - window.dataLayer = window.dataLayer || []; - function gtag(){dataLayer.push(arguments);} - gtag('js', new Date()); - - gtag('config', 'UA-93461466-1'); - ` - }, { src: baseUrl + 'scripts/prism.js', 'data-manual': true diff --git a/pages/roadmap/index.vue b/pages/roadmap/index.vue index c85877c9a..c0a0deaad 100644 --- a/pages/roadmap/index.vue +++ b/pages/roadmap/index.vue @@ -34,24 +34,40 @@
Initate the implementation of Slot Props to provide advanced control over component internals.
+Initate the implementation of Pass Through Props to provide advanced control over component internals.
Increase unit test coverage.
+Introduce new unstyled mode to fully support styling with CSS libraries like Tailwind.
+Implement a built-in TailwindCSS theme using the new Unstyled mode.
+Migrate to CSS variables for a dynamic approach.
Introduce new unstyled mode to fully support styling with CSS libraries like Tailwind.
+Implement RTL support for all components.
Increase unit test coverage.
+Add support for Figma Tokens.
+Initiated support for Figma Tokens.
Create a Figma Plugin to generate themes from Figma.
+Finalize Figma Tokens..
30+ new UI Blocks.
-New UI Blocks.
-Open source the sass based theming api and the visual designer.
Migrate to CSS variables for a dynamic approach.
-Advanced Theme Editor with full control over the Theming API.
@@ -194,7 +194,6 @@Initiate migration of templates to Vite.
Finish migration of templates to Vite.