@timus-networks/theme 2.4.258 → 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 +10 -0
- package/dist/runtime/public/scss/_tag.scss +0 -0
- package/dist/runtime/public/scss/element-plus/index.css +10 -0
- package/dist/runtime/public/scss/element-plus/tag.css +10 -0
- package/dist/runtime/public/scss/element-plus/tag.scss +12 -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.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 = {
|
|
@@ -16772,6 +16772,16 @@ heights > $common-component-size
|
|
|
16772
16772
|
--el-tag-bg-color: var(--el-color-white);
|
|
16773
16773
|
}
|
|
16774
16774
|
|
|
16775
|
+
.el-tag.rounded {
|
|
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;
|
|
16783
|
+
}
|
|
16784
|
+
|
|
16775
16785
|
.el-text {
|
|
16776
16786
|
--el-text-font-size: var(--el-font-size-base);
|
|
16777
16787
|
--el-text-color: var(--el-text-color-regular);
|
|
File without changes
|
|
@@ -15880,6 +15880,16 @@ h6,
|
|
|
15880
15880
|
--el-tag-bg-color: var(--el-color-white);
|
|
15881
15881
|
}
|
|
15882
15882
|
|
|
15883
|
+
.el-tag.rounded {
|
|
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;
|
|
15891
|
+
}
|
|
15892
|
+
|
|
15883
15893
|
.el-text {
|
|
15884
15894
|
--el-text-font-size: var(--el-font-size-base);
|
|
15885
15895
|
--el-text-color: var(--el-text-color-regular);
|
|
@@ -630,4 +630,14 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
630
630
|
|
|
631
631
|
.el-tag.el-tag--secondary {
|
|
632
632
|
--el-tag-bg-color: var(--el-color-white);
|
|
633
|
+
}
|
|
634
|
+
|
|
635
|
+
.el-tag.rounded {
|
|
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;
|
|
633
643
|
}
|
|
@@ -171,3 +171,15 @@ $tag-icon-span-gap: map.merge(
|
|
|
171
171
|
.el-tag.el-tag--secondary {
|
|
172
172
|
--el-tag-bg-color: var(--el-color-white);
|
|
173
173
|
}
|
|
174
|
+
|
|
175
|
+
.el-tag {
|
|
176
|
+
&.rounded {
|
|
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;
|
|
184
|
+
}
|
|
185
|
+
}
|
package/package.json
CHANGED