@timus-networks/theme 2.4.259 → 2.4.260
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 +7 -1
- package/dist/runtime/public/scss/element-plus/index.css +7 -1
- package/dist/runtime/public/scss/element-plus/tag.css +7 -1
- package/dist/runtime/public/scss/element-plus/tag.scss +7 -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.259";
|
|
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 = {
|
|
@@ -16773,7 +16773,13 @@ heights > $common-component-size
|
|
|
16773
16773
|
}
|
|
16774
16774
|
|
|
16775
16775
|
.el-tag.rounded {
|
|
16776
|
-
|
|
16776
|
+
width: 16px;
|
|
16777
|
+
height: 16px;
|
|
16778
|
+
padding: 0 !important;
|
|
16779
|
+
border-radius: 9999px;
|
|
16780
|
+
display: flex;
|
|
16781
|
+
align-items: center;
|
|
16782
|
+
justify-content: center;
|
|
16777
16783
|
}
|
|
16778
16784
|
|
|
16779
16785
|
.el-text {
|
|
@@ -15881,7 +15881,13 @@ h6,
|
|
|
15881
15881
|
}
|
|
15882
15882
|
|
|
15883
15883
|
.el-tag.rounded {
|
|
15884
|
-
|
|
15884
|
+
width: 16px;
|
|
15885
|
+
height: 16px;
|
|
15886
|
+
padding: 0 !important;
|
|
15887
|
+
border-radius: 9999px;
|
|
15888
|
+
display: flex;
|
|
15889
|
+
align-items: center;
|
|
15890
|
+
justify-content: center;
|
|
15885
15891
|
}
|
|
15886
15892
|
|
|
15887
15893
|
.el-text {
|
|
@@ -633,5 +633,11 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
633
633
|
}
|
|
634
634
|
|
|
635
635
|
.el-tag.rounded {
|
|
636
|
-
|
|
636
|
+
width: 16px;
|
|
637
|
+
height: 16px;
|
|
638
|
+
padding: 0 !important;
|
|
639
|
+
border-radius: 9999px;
|
|
640
|
+
display: flex;
|
|
641
|
+
align-items: center;
|
|
642
|
+
justify-content: center;
|
|
637
643
|
}
|
|
@@ -174,6 +174,12 @@ $tag-icon-span-gap: map.merge(
|
|
|
174
174
|
|
|
175
175
|
.el-tag {
|
|
176
176
|
&.rounded {
|
|
177
|
-
|
|
177
|
+
width: 16px;
|
|
178
|
+
height: 16px;
|
|
179
|
+
padding: 0 !important;
|
|
180
|
+
border-radius: 9999px;
|
|
181
|
+
display: flex;
|
|
182
|
+
align-items: center;
|
|
183
|
+
justify-content: center;
|
|
178
184
|
}
|
|
179
185
|
}
|
package/package.json
CHANGED