amenpunk 1 vuosi sitten
vanhempi
commit
b67036927d
1 muutettua tiedostoa jossa 6 lisäystä ja 5 poistoa
  1. 6 5
      src/Components/Modal/MostrarPlaza.js

+ 6 - 5
src/Components/Modal/MostrarPlaza.js

@@ -1,6 +1,7 @@
1 1
 import React, { memo } from 'react';
2
-import { Modal, Col, Row } from 'react-bootstrap'
3
-import QA from '../../Images/puesto.jpg'
2
+import { Modal, Col, Row ,Image } from 'react-bootstrap'
3
+// import QA from '../../Images/puesto.jpg'
4
+import QA from '../../Images/register_mok.png'
4 5
 
5 6
 import { Divider, Chip } from '@mui/material'
6 7
 
@@ -22,8 +23,8 @@ function Mostrar(props) {
22 23
                 <div className="data_product">
23 24
                     <Row >
24 25
                         <Col md="4">
25
-                            <div className="img-container">
26
-                                <img alt='not found cooo' src={QA} />
26
+                            <div >
27
+                              <Image style={{width: '100%'}} fuild={true}  alt='not found cooo' src={QA} />
27 28
                             </div>
28 29
                         </Col>
29 30
                         <Col md="8">
@@ -38,7 +39,7 @@ function Mostrar(props) {
38 39
                                 {
39 40
                                     puesto && visible
40 41
                                     ? puesto.tests.map( ( {decription, id} ) => 
41
-                                        (<Chip color="primary" key={id} label={decription}/>)
42
+                                      (<Chip style={{background:'var(--main)', color: 'white', fontWeight: "bold"}} key={id} label={decription}/>)
42 43
                                     ) : null
43 44
                                 }
44 45
                             </div>