@timus-networks/theme 2.4.47 → 2.4.49
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/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -11,7 +11,7 @@ const __filename = __cjs_url__.fileURLToPath(import.meta.url);
|
|
|
11
11
|
const __dirname = __cjs_path__.dirname(__filename);
|
|
12
12
|
const require = __cjs_mod__.createRequire(import.meta.url);
|
|
13
13
|
const name = "@timus-networks/theme";
|
|
14
|
-
const version = "2.4.
|
|
14
|
+
const version = "2.4.49";
|
|
15
15
|
const description = "A comprehensive Nuxt.js module providing a tailored theme experience with integrated TailwindCSS support for applications.";
|
|
16
16
|
const type = "module";
|
|
17
17
|
const exports = {
|
|
@@ -16723,6 +16723,8 @@ mark.el-text {
|
|
|
16723
16723
|
color: var(--el-bg-color);
|
|
16724
16724
|
background: var(--el-text-color-primary);
|
|
16725
16725
|
border: 1px solid var(--el-text-color-primary);
|
|
16726
|
+
padding: 12px;
|
|
16727
|
+
max-width: 450px;
|
|
16726
16728
|
}
|
|
16727
16729
|
.el-popper.is-dark .el-popper__arrow::before {
|
|
16728
16730
|
border: 1px solid var(--el-text-color-primary);
|
|
@@ -319,6 +319,8 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
319
319
|
color: var(--el-bg-color);
|
|
320
320
|
background: var(--el-text-color-primary);
|
|
321
321
|
border: 1px solid var(--el-text-color-primary);
|
|
322
|
+
padding: 12px;
|
|
323
|
+
max-width: 450px;
|
|
322
324
|
}
|
|
323
325
|
.el-popper.is-dark .el-popper__arrow::before {
|
|
324
326
|
border: 1px solid var(--el-text-color-primary);
|
|
@@ -24,6 +24,8 @@
|
|
|
24
24
|
color: getCssVar('bg-color');
|
|
25
25
|
background: getCssVar('text-color', 'primary');
|
|
26
26
|
border: 1px solid getCssVar('text-color', 'primary');
|
|
27
|
+
padding: 12px;
|
|
28
|
+
max-width: 450px;
|
|
27
29
|
|
|
28
30
|
#{$arrow-selector}::before {
|
|
29
31
|
border: 1px solid getCssVar('text-color', 'primary');
|
package/package.json
CHANGED