Changeset 79a0317 for imaps-frontend/src/components/DrawGuide
- Timestamp:
- 01/21/25 03:08:24 (7 weeks ago)
- Branches:
- main
- Parents:
- 0c6b92a
- Location:
- imaps-frontend/src/components/DrawGuide
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
imaps-frontend/src/components/DrawGuide/DrawGuide.jsx
r0c6b92a r79a0317 18 18 <div onClick={toggleModal} className={styles.overlay}></div> 19 19 <div className={styles.modalContent}> 20 <h2 >How to Use the Map Builder</h2>21 <p >Welcome to the Map Builder! Here you can create an indoor map, render it and enjoy!:</p>20 <h2 className={styles.title}>How to Use the Map Builder</h2> 21 <p className={styles.paragraph}>Welcome to the Map Builder! Here you can create an indoor map, render it and enjoy!:</p> 22 22 <br></br> 23 23 <ul> … … 35 35 </ul> 36 36 <br></br> 37 <p >After completing your map, click the render button and go to the View page to see your full featured map!</p>37 <p className={styles.paragraph}>After completing your map, click the render button and go to the View page to see your full featured map!</p> 38 38 39 39 <button className={styles.closeModal} onClick={toggleModal}> -
imaps-frontend/src/components/DrawGuide/DrawGuide.module.css
r0c6b92a r79a0317 18 18 backdrop-filter: blur(5px); /* Optional blur effect */ 19 19 z-index: 999; 20 21 } 22 23 .title{ 24 color: white; 25 } 26 27 .paragraph{ 28 color: #ababab; 20 29 } 21 30 … … 25 34 left: 50%; 26 35 transform: translate(-50%, -50%); 27 background-color: #2c2f33; /* Darker background for modal content */36 background-color: #2c2f33; 28 37 color: #ffffff; /* White text for contrast */ 29 38 padding: 20px; … … 35 44 } 36 45 37 h2 { 38 margin-bottom: 15px; 39 color: #ffffff; /* White text for the heading*/40 } 46 /*h2 {*/ 47 /* margin-bottom: 15px;*/ 48 /* color: #ffffff; !* White text for the heading *!*/ 49 /*}*/ 41 50 42 51 .btnModal {
Note:
See TracChangeset
for help on using the changeset viewer.