@timus-networks/theme 2.4.210 → 2.4.212
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 +1 -1
- package/dist/module.mjs +1 -1
- package/dist/runtime/assets/scss/main.css +2 -2
- package/dist/runtime/public/scss/element-plus/form.css +1 -1
- package/dist/runtime/public/scss/element-plus/form.scss +1 -1
- package/dist/runtime/public/scss/element-plus/index.css +2 -2
- package/dist/runtime/public/scss/element-plus/message-box.css +1 -1
- package/dist/runtime/public/scss/element-plus/message-box.scss +1 -1
- package/package.json +1 -1
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.211";
|
|
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 = {
|
|
@@ -9909,7 +9909,7 @@ heights > $common-component-size
|
|
|
9909
9909
|
color: var(--el-color-neutral-light-9);
|
|
9910
9910
|
height: 36px;
|
|
9911
9911
|
line-height: 36px;
|
|
9912
|
-
padding: 0
|
|
9912
|
+
padding: 0;
|
|
9913
9913
|
box-sizing: border-box;
|
|
9914
9914
|
gap: 4px;
|
|
9915
9915
|
}
|
|
@@ -11578,7 +11578,7 @@ heights > $common-component-size
|
|
|
11578
11578
|
}
|
|
11579
11579
|
|
|
11580
11580
|
.el-message-box__title {
|
|
11581
|
-
font-size: var(--el-messagebox-font-size);
|
|
11581
|
+
font-size: var(--el-messagebox-title-font-size);
|
|
11582
11582
|
line-height: var(--el-messagebox-font-line-height);
|
|
11583
11583
|
color: var(--el-messagebox-title-color);
|
|
11584
11584
|
font-weight: 500;
|
|
@@ -165,7 +165,7 @@ $form-item-label-top-margin-bottom: map.merge(
|
|
|
165
165
|
height: #{map.get($form-item-line-height, 'default')};
|
|
166
166
|
line-height: #{map.get($form-item-line-height, 'default')};
|
|
167
167
|
|
|
168
|
-
padding: 0
|
|
168
|
+
padding: 0;
|
|
169
169
|
box-sizing: border-box;
|
|
170
170
|
gap: 4px;
|
|
171
171
|
}
|
|
@@ -8906,7 +8906,7 @@ heights > $common-component-size
|
|
|
8906
8906
|
color: var(--el-color-neutral-light-9);
|
|
8907
8907
|
height: 36px;
|
|
8908
8908
|
line-height: 36px;
|
|
8909
|
-
padding: 0
|
|
8909
|
+
padding: 0;
|
|
8910
8910
|
box-sizing: border-box;
|
|
8911
8911
|
gap: 4px;
|
|
8912
8912
|
}
|
|
@@ -10686,7 +10686,7 @@ h6,
|
|
|
10686
10686
|
}
|
|
10687
10687
|
|
|
10688
10688
|
.el-message-box__title {
|
|
10689
|
-
font-size: var(--el-messagebox-font-size);
|
|
10689
|
+
font-size: var(--el-messagebox-title-font-size);
|
|
10690
10690
|
line-height: var(--el-messagebox-font-line-height);
|
|
10691
10691
|
color: var(--el-messagebox-title-color);
|
|
10692
10692
|
font-weight: 500;
|
|
@@ -399,7 +399,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
399
399
|
}
|
|
400
400
|
|
|
401
401
|
.el-message-box__title {
|
|
402
|
-
font-size: var(--el-messagebox-font-size);
|
|
402
|
+
font-size: var(--el-messagebox-title-font-size);
|
|
403
403
|
line-height: var(--el-messagebox-font-line-height);
|
|
404
404
|
color: var(--el-messagebox-title-color);
|
|
405
405
|
font-weight: 500;
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
}
|
|
71
71
|
|
|
72
72
|
@include e(title) {
|
|
73
|
-
font-size: getCssVar('messagebox-font-size');
|
|
73
|
+
font-size: getCssVar('messagebox-title-font-size');
|
|
74
74
|
line-height: getCssVar('messagebox-font-line-height');
|
|
75
75
|
color: getCssVar('messagebox-title-color');
|
|
76
76
|
font-weight: 500;
|
package/package.json
CHANGED