@recursyve/nice-ui-kit.v2 13.2.0-beta.92 → 13.2.0-beta.93
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/_index.scss +0 -1
- package/package.json +1 -1
- package/src/lib/nice.tailwind.scss +0 -97
package/_index.scss
CHANGED
package/package.json
CHANGED
|
@@ -1,97 +0,0 @@
|
|
|
1
|
-
/* This injects Tailwind's base styles and any base styles registered by plugins. */
|
|
2
|
-
@tailwind base;
|
|
3
|
-
|
|
4
|
-
/* This injects additional styles into Tailwind's base styles layer. */
|
|
5
|
-
@layer base {
|
|
6
|
-
|
|
7
|
-
* {
|
|
8
|
-
/* Text rendering */
|
|
9
|
-
text-rendering: optimizeLegibility;
|
|
10
|
-
-o-text-rendering: optimizeLegibility;
|
|
11
|
-
-ms-text-rendering: optimizeLegibility;
|
|
12
|
-
-moz-text-rendering: optimizeLegibility;
|
|
13
|
-
-webkit-text-rendering: optimizeLegibility;
|
|
14
|
-
-webkit-tap-highlight-color: transparent;
|
|
15
|
-
|
|
16
|
-
/* Remove the focus ring */
|
|
17
|
-
&:focus {
|
|
18
|
-
outline: none !important;
|
|
19
|
-
}
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
/* HTML and Body default styles */
|
|
23
|
-
html,
|
|
24
|
-
body {
|
|
25
|
-
display: flex;
|
|
26
|
-
flex-direction: column;
|
|
27
|
-
flex: 1 1 auto;
|
|
28
|
-
width: 100%;
|
|
29
|
-
min-height: 100%;
|
|
30
|
-
-webkit-font-smoothing: auto;
|
|
31
|
-
-moz-osx-font-smoothing: auto;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
/* Font size */
|
|
35
|
-
html {
|
|
36
|
-
font-size: 16px;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
body {
|
|
40
|
-
font-size: 0.875rem;
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
/* Stylistic alternates for Inter */
|
|
44
|
-
body {
|
|
45
|
-
font-feature-settings: 'salt';
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
/* Better spacing and border for horizontal rule */
|
|
49
|
-
hr {
|
|
50
|
-
margin: 32px 0;
|
|
51
|
-
border-bottom-width: 1px;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
/* Make images and videos to take up all the available space */
|
|
55
|
-
img {
|
|
56
|
-
width: 100%;
|
|
57
|
-
vertical-align: top;
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
/* Fix: Disabled placeholder color is too faded on Safari */
|
|
61
|
-
input[disabled] {
|
|
62
|
-
opacity: 1;
|
|
63
|
-
-webkit-text-fill-color: currentColor;
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
body, .dark, .light {
|
|
67
|
-
@apply text-default bg-default #{'!important'};
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
*, *::before, *::after {
|
|
71
|
-
--tw-border-opacity: 1 !important;
|
|
72
|
-
border-color: rgba(var(--nice-border-rgb), var(--tw-border-opacity));
|
|
73
|
-
|
|
74
|
-
.dark & {
|
|
75
|
-
--tw-border-opacity: 0.12 !important;
|
|
76
|
-
}
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
[disabled] * {
|
|
80
|
-
@apply text-disabled #{'!important'};
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
/* Print styles */
|
|
84
|
-
@media print {
|
|
85
|
-
|
|
86
|
-
/* Make the base font size smaller for print so everything is scaled nicely */
|
|
87
|
-
html {
|
|
88
|
-
font-size: 12px !important;
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
body, .dark, .light {
|
|
92
|
-
background: none !important;
|
|
93
|
-
}
|
|
94
|
-
}
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
@tailwind components;
|