@docyrus/ui-pro-ai-assistant 0.0.6 → 0.0.7
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/styles.css +42 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -4811,6 +4811,48 @@
|
|
|
4811
4811
|
}
|
|
4812
4812
|
}
|
|
4813
4813
|
}
|
|
4814
|
+
@layer utilities {
|
|
4815
|
+
@container (width >= 48rem) {
|
|
4816
|
+
.\@3xl\:hidden {
|
|
4817
|
+
display: none;
|
|
4818
|
+
}
|
|
4819
|
+
.\@3xl\:flex {
|
|
4820
|
+
display: flex;
|
|
4821
|
+
}
|
|
4822
|
+
.\@3xl\:block {
|
|
4823
|
+
display: block;
|
|
4824
|
+
}
|
|
4825
|
+
.\@3xl\:flex-col {
|
|
4826
|
+
flex-direction: column;
|
|
4827
|
+
}
|
|
4828
|
+
}
|
|
4829
|
+
[data-slot="input-group"]:has(> textarea) {
|
|
4830
|
+
height: auto;
|
|
4831
|
+
}
|
|
4832
|
+
[data-slot="input-group"]:has(> [data-align="block-end"]) {
|
|
4833
|
+
height: auto;
|
|
4834
|
+
flex-direction: column;
|
|
4835
|
+
}
|
|
4836
|
+
[data-slot="input-group"]:has(> [data-align="block-start"]) {
|
|
4837
|
+
height: auto;
|
|
4838
|
+
flex-direction: column;
|
|
4839
|
+
}
|
|
4840
|
+
[data-slot="input-group"]:has(> [data-align="block-end"]) > input {
|
|
4841
|
+
padding-top: 0.75rem;
|
|
4842
|
+
}
|
|
4843
|
+
[data-slot="input-group"]:has(> [data-align="block-start"]) > input {
|
|
4844
|
+
padding-bottom: 0.75rem;
|
|
4845
|
+
}
|
|
4846
|
+
[data-slot="input-group"]:has(> [data-align="inline-end"]) > input {
|
|
4847
|
+
padding-inline-end: 0.375rem;
|
|
4848
|
+
}
|
|
4849
|
+
[data-slot="input-group"]:has(> [data-align="inline-start"]) > input {
|
|
4850
|
+
padding-inline-start: 0.375rem;
|
|
4851
|
+
}
|
|
4852
|
+
textarea.field-sizing-content {
|
|
4853
|
+
field-sizing: content;
|
|
4854
|
+
}
|
|
4855
|
+
}
|
|
4814
4856
|
@property --tw-translate-x {
|
|
4815
4857
|
syntax: "*";
|
|
4816
4858
|
inherits: false;
|
package/package.json
CHANGED