Browse Source

upgrade node version to 16.16.0

amenpunk 2 years ago
parent
commit
89daa5f599
3 changed files with 6 additions and 6 deletions
  1. 3 3
      Jenkinsfile
  2. 1 1
      src/App.css
  3. 2 2
      src/Pages/Logincs.jsx

+ 3 - 3
Jenkinsfile

7
     stages {
7
     stages {
8
         stage('install dependencies') {
8
         stage('install dependencies') {
9
             steps {
9
             steps {
10
-                nvm( version : '16.13.2' ){
10
+                nvm( version : '16.16.0' ){
11
                     sh 'npm install'
11
                     sh 'npm install'
12
                 }
12
                 }
13
             }
13
             }
14
         }
14
         }
15
         stage('build') {
15
         stage('build') {
16
             steps {
16
             steps {
17
-                nvm( version : '16.13.2' ){
17
+                nvm( version : '16.16.0' ){
18
                     sh 'npm run build'
18
                     sh 'npm run build'
19
                 }
19
                 }
20
             }
20
             }
21
         }
21
         }
22
         stage('test') {
22
         stage('test') {
23
             steps {
23
             steps {
24
-                nvm( version : '16.13.2' ){
24
+                nvm( version : '16.16.0' ){
25
                     sh 'npm run test'
25
                     sh 'npm run test'
26
                 }
26
                 }
27
             }
27
             }

+ 1 - 1
src/App.css

204
 }
204
 }
205
 
205
 
206
 #login_btn_fn:hover{
206
 #login_btn_fn:hover{
207
-    background-color: var(--main);
207
+    background-color: var(--second);
208
 }
208
 }
209
 
209
 
210
 .btn_plaza_common{
210
 .btn_plaza_common{

+ 2 - 2
src/Pages/Logincs.jsx

119
                             alignItems:'center'
119
                             alignItems:'center'
120
                         }}
120
                         }}
121
                     >
121
                     >
122
-                        <Avatar sx={{ m: 1, bgcolor: '#fd4b4b' }}>
122
+                        <Avatar sx={{ m: 1, bgcolor: 'var(--second)' }}>
123
                             <PersonIcon />
123
                             <PersonIcon />
124
                         </Avatar>
124
                         </Avatar>
125
                         <Typography component="h1" variant="h5">
125
                         <Typography component="h1" variant="h5">
160
                                 type="submit"
160
                                 type="submit"
161
                                 fullWidth
161
                                 fullWidth
162
                                 variant="contained"
162
                                 variant="contained"
163
-                                sx={{ mt: 3, mb: 2, bgcolor: 'var(--main)' }}
163
+                                sx={{ mt: 3, mb: 2, bgcolor: 'var(--second)' }}
164
                             >
164
                             >
165
                                 Ingresar
165
                                 Ingresar
166
                             </Button>
166
                             </Button>