Skip to content

Commit 028130e

Browse files
committed
Fix build failed
1 parent f10a0c7 commit 028130e

File tree

3 files changed

+127
-3
lines changed

3 files changed

+127
-3
lines changed

Dockerfile-nginx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:18.15.0-alpine3.17 as build
1+
FROM node:18.20.3-alpine3.20 as build
22

33
RUN mkdir /app
44

src/components/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ export const ComponentsContent = (props) => {
165165
alignItems: 'center',
166166
}}>
167167

168-
<div style={{display: 'flex', marginTop: '12px', marginLeft: '-25px', gap: '5px'}}>
168+
<div style={{display: 'flex', marginTop: '25px', marginLeft: '-25px', gap: '5px'}}>
169169
<div className="footer">
170170
<a target="_blank" title="Logo">
171171
<img src={logoIcon} alt="Logo" className="icon"

src/utils/login.css

Lines changed: 125 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
@tailwind base;
21
@tailwind components;
32
@tailwind utilities;
43

@@ -10,6 +9,131 @@
109
fill: white;
1110
}
1211

12+
* {
13+
scrollbar-width: none;
14+
-ms-overflow-style: none;
15+
}
16+
17+
.font-bold {
18+
font-weight: 700;
19+
}
20+
21+
.text-3xl {
22+
font-size: 1.875rem;
23+
line-height: 2.25rem;
24+
}
25+
26+
.mb-2 {
27+
margin-bottom: 0.5rem;
28+
}
29+
30+
.p-10 {
31+
padding: 2.5rem;
32+
}
33+
34+
.flex-col {
35+
flex-direction: column;
36+
}
37+
38+
.w-3\/5 {
39+
width: 60%;
40+
}
41+
42+
.flex {
43+
display: flex
44+
;
45+
}
46+
47+
* {
48+
scrollbar-width: none;
49+
-ms-overflow-style: none;
50+
}
51+
52+
*, ::before, ::after {
53+
--tw-translate-x: 0;
54+
--tw-translate-y: 0;
55+
--tw-rotate: 0;
56+
--tw-skew-x: 0;
57+
--tw-skew-y: 0;
58+
--tw-scale-x: 1;
59+
--tw-scale-y: 1;
60+
--tw-pan-x: ;
61+
--tw-pan-y: ;
62+
--tw-pinch-zoom: ;
63+
--tw-scroll-snap-strictness: proximity;
64+
--tw-ordinal: ;
65+
--tw-slashed-zero: ;
66+
--tw-numeric-figure: ;
67+
--tw-numeric-spacing: ;
68+
--tw-numeric-fraction: ;
69+
--tw-ring-inset: ;
70+
--tw-ring-offset-width: 0px;
71+
--tw-ring-offset-color: #fff;
72+
--tw-ring-color: rgb(59 130 246 / 0.5);
73+
--tw-ring-offset-shadow: 0 0 #0000;
74+
--tw-ring-shadow: 0 0 #0000;
75+
--tw-shadow: 0 0 #0000;
76+
--tw-shadow-colored: 0 0 #0000;
77+
--tw-blur: ;
78+
--tw-brightness: ;
79+
--tw-contrast: ;
80+
--tw-grayscale: ;
81+
--tw-hue-rotate: ;
82+
--tw-invert: ;
83+
--tw-saturate: ;
84+
--tw-sepia: ;
85+
--tw-drop-shadow: ;
86+
--tw-backdrop-blur: ;
87+
--tw-backdrop-brightness: ;
88+
--tw-backdrop-contrast: ;
89+
--tw-backdrop-grayscale: ;
90+
--tw-backdrop-hue-rotate: ;
91+
--tw-backdrop-invert: ;
92+
--tw-backdrop-opacity: ;
93+
--tw-backdrop-saturate: ;
94+
--tw-backdrop-sepia: ;
95+
}
96+
97+
::before, ::after {
98+
--tw-content: '';
99+
}
100+
101+
*, ::before, ::after {
102+
box-sizing: border-box;
103+
border-width: 0;
104+
border-style: solid;
105+
border-color: #e5e7eb;
106+
}
107+
108+
.transition-colors {
109+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
110+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
111+
transition-duration: 150ms;
112+
}
113+
114+
.text-white {
115+
--tw-text-opacity: 1;
116+
color: rgb(255 255 255 / var(--tw-text-opacity));
117+
}
118+
119+
.text-white {
120+
--tw-text-opacity: 1;
121+
color: rgb(255 255 255 / var(--tw-text-opacity));
122+
}
123+
124+
.py-3 {
125+
padding-top: 0.75rem;
126+
padding-bottom: 0.75rem;
127+
}
128+
129+
.rounded-full {
130+
border-radius: 9999px;
131+
}
132+
133+
.w-full {
134+
width: 100%;
135+
}
136+
13137
body {
14138
margin:0px
15139
}

0 commit comments

Comments
 (0)