@norskvideo/norsk-studio 1.27.0-2025-04-08-3f13a32b → 1.27.0-2025-04-10-614c23ec

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/tailwind-theme.js CHANGED
@@ -24,6 +24,10 @@ module.exports = {
24
24
  },
25
25
  success: "#00993D",
26
26
  error: "#FF4A4A",
27
+ warning: "#FF7700",
28
+ live: "#E61818",
29
+ offline: "#34373D",
30
+ standby: "#34FF56",
27
31
  },
28
32
  keyframes: {
29
33
  activeSubscription: {
@@ -77,19 +81,4 @@ module.exports = {
77
81
  ...defaultTheme.screens,
78
82
  },
79
83
  },
80
- corePlugins: {
81
- // Preflight is already included by the core studio stylesheet
82
- preflight: false,
83
- },
84
- experimental: {
85
- // This removes the var(--tw-*) reset
86
- optimizeUniversalDefaults: true,
87
- },
88
- plugins: [
89
- require('flowbite/plugin')({
90
- charts: false,
91
- forms: false,
92
- tooltips: false,
93
- }),
94
- ],
95
84
  }
@@ -8,10 +8,13 @@ module.exports = {
8
8
  "static/**/*.{html,js,ejs}",
9
9
  "node_modules/flowbite-react/lib/esm/**/*.js"
10
10
  ],
11
- corePlugins: undefined,
12
- experimental: undefined,
13
11
  plugins: [
14
- require('flowbite/plugin'),
15
12
  require("tailwindcss-animate"),
13
+ require('tailwind-scrollbar')({ nocompatible: true }),
14
+ require('flowbite/plugin')({
15
+ charts: false,
16
+ forms: false,
17
+ tooltips: false,
18
+ }),
16
19
  ],
17
20
  }