@autobusal/providers 1.0.23 → 1.0.25
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/Styles/GlobalStyles.ts +38 -0
- package/package.json +1 -1
- package/types.ts +5 -4
package/Styles/GlobalStyles.ts
CHANGED
|
@@ -107,6 +107,44 @@ const GlobalStyles = createGlobalStyle`
|
|
|
107
107
|
padding: 0;
|
|
108
108
|
margin: 0;
|
|
109
109
|
}
|
|
110
|
+
|
|
111
|
+
.box {
|
|
112
|
+
padding: 20px;
|
|
113
|
+
background-color: ${ props => props.theme.foreground.normal };
|
|
114
|
+
border-radius: ${ props => props.theme.borderRadius };
|
|
115
|
+
box-shadow: ${ props => props.theme.boxShadow };
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.row {
|
|
119
|
+
display: flex;
|
|
120
|
+
flex-direction: column;
|
|
121
|
+
gap: 6px;
|
|
122
|
+
flex: 1;
|
|
123
|
+
margin-bottom: 15px;
|
|
124
|
+
font-weight: 700;
|
|
125
|
+
font-size: calc(${ props => props.theme.size.m } - 1px);
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.row-nomargin {
|
|
129
|
+
margin-bottom: 0 !important;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.row-data {
|
|
133
|
+
font-weight: 400;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.column {
|
|
137
|
+
@media (min-width: 480px) {
|
|
138
|
+
display: flex;
|
|
139
|
+
gap: 20px;
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.list {
|
|
144
|
+
display: flex;
|
|
145
|
+
gap: 6px;
|
|
146
|
+
align-items: center;
|
|
147
|
+
}
|
|
110
148
|
`;
|
|
111
149
|
|
|
112
150
|
export default GlobalStyles;
|
package/package.json
CHANGED
package/types.ts
CHANGED
|
@@ -1,10 +1,6 @@
|
|
|
1
1
|
export interface SettingsData {
|
|
2
2
|
preferences: {
|
|
3
3
|
company: string
|
|
4
|
-
logo: {
|
|
5
|
-
light: string
|
|
6
|
-
dark: string
|
|
7
|
-
}
|
|
8
4
|
|
|
9
5
|
googleAnalyticsID: string | null
|
|
10
6
|
|
|
@@ -31,6 +27,11 @@ export interface SettingsData {
|
|
|
31
27
|
light: any
|
|
32
28
|
dark: any
|
|
33
29
|
}
|
|
30
|
+
|
|
31
|
+
logo: {
|
|
32
|
+
light: string
|
|
33
|
+
dark: string
|
|
34
|
+
}
|
|
34
35
|
}
|
|
35
36
|
|
|
36
37
|
export interface MenuData {
|