@timus-networks/theme 2.4.149 → 2.4.150
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 +3 -0
- package/dist/runtime/public/scss/element-plus/index.css +3 -0
- package/dist/runtime/public/scss/element-plus/table.css +3 -0
- package/dist/runtime/public/scss/element-plus/table.scss +4 -0
- 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.149";
|
|
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 = {
|
|
@@ -14998,6 +14998,9 @@ heights > $common-component-size
|
|
|
14998
14998
|
.el-table .el-table__cell.is-center {
|
|
14999
14999
|
text-align: center;
|
|
15000
15000
|
}
|
|
15001
|
+
.el-table .el-table__cell.is-center .cell {
|
|
15002
|
+
justify-content: center;
|
|
15003
|
+
}
|
|
15001
15004
|
|
|
15002
15005
|
.el-table .el-table__cell.is-right {
|
|
15003
15006
|
text-align: right;
|
|
@@ -14112,6 +14112,9 @@ h6,
|
|
|
14112
14112
|
.el-table .el-table__cell.is-center {
|
|
14113
14113
|
text-align: center;
|
|
14114
14114
|
}
|
|
14115
|
+
.el-table .el-table__cell.is-center .cell {
|
|
14116
|
+
justify-content: center;
|
|
14117
|
+
}
|
|
14115
14118
|
|
|
14116
14119
|
.el-table .el-table__cell.is-right {
|
|
14117
14120
|
text-align: right;
|
|
@@ -444,6 +444,9 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
444
444
|
.el-table .el-table__cell.is-center {
|
|
445
445
|
text-align: center;
|
|
446
446
|
}
|
|
447
|
+
.el-table .el-table__cell.is-center .cell {
|
|
448
|
+
justify-content: center;
|
|
449
|
+
}
|
|
447
450
|
|
|
448
451
|
.el-table .el-table__cell.is-right {
|
|
449
452
|
text-align: right;
|
package/package.json
CHANGED