@inntechcorp/it-design 2.0.84 → 2.0.86
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.
|
@@ -61,32 +61,6 @@
|
|
|
61
61
|
-webkit-box-shadow: 0 0 0 30px #151d3d inset !important;
|
|
62
62
|
}
|
|
63
63
|
|
|
64
|
-
.option {
|
|
65
|
-
display: flex;
|
|
66
|
-
align-items: center;
|
|
67
|
-
cursor: pointer;
|
|
68
|
-
min-width: max-content;
|
|
69
|
-
padding: 10px 30px 10px 15px;
|
|
70
|
-
}
|
|
71
|
-
.option:not(:last-child) {
|
|
72
|
-
margin-bottom: 1px;
|
|
73
|
-
}
|
|
74
|
-
.option:hover {
|
|
75
|
-
background-color: rgba(29, 38, 73, 0.5019607843);
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
.selected .single, .selected .option span {
|
|
79
|
-
color: #ffffff;
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
.single, .option span {
|
|
83
|
-
color: rgba(255, 255, 255, 0.6666666667);
|
|
84
|
-
font-weight: 400;
|
|
85
|
-
font-size: 12px;
|
|
86
|
-
line-height: 12px;
|
|
87
|
-
white-space: nowrap;
|
|
88
|
-
}
|
|
89
|
-
|
|
90
64
|
.arrow {
|
|
91
65
|
transition: all 0.25s ease-out;
|
|
92
66
|
margin-left: auto;
|
|
@@ -116,6 +90,32 @@
|
|
|
116
90
|
align-items: center;
|
|
117
91
|
}
|
|
118
92
|
|
|
93
|
+
.option {
|
|
94
|
+
display: flex;
|
|
95
|
+
align-items: center;
|
|
96
|
+
cursor: pointer;
|
|
97
|
+
min-width: max-content;
|
|
98
|
+
padding: 10px 30px 10px 15px;
|
|
99
|
+
}
|
|
100
|
+
.option:not(:last-child) {
|
|
101
|
+
margin-bottom: 1px;
|
|
102
|
+
}
|
|
103
|
+
.option:hover {
|
|
104
|
+
background-color: rgba(29, 38, 73, 0.5019607843);
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.selected .single, .selected .option span {
|
|
108
|
+
color: #ffffff;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.single, .option span {
|
|
112
|
+
color: rgba(255, 255, 255, 0.6666666667);
|
|
113
|
+
font-weight: 400;
|
|
114
|
+
font-size: 12px;
|
|
115
|
+
line-height: 12px;
|
|
116
|
+
white-space: nowrap;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
119
|
.menu {
|
|
120
120
|
background-color: #050A20;
|
|
121
121
|
border-radius: 0 5px 5px 5px;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
declare const Code: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
3
|
+
export { Code };
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { ITDSizeSlug } from "../index";
|
|
2
|
-
export default function GetSizeBySizeSlug(size: ITDSizeSlug): "
|
|
2
|
+
export default function GetSizeBySizeSlug(size: ITDSizeSlug): "large" | "small" | "x-small" | "medium" | "default" | "x-large" | "df";
|