- Timestamp:
- 09/11/22 18:03:58 (2 years ago)
- Branches:
- master
- Children:
- 775e15e
- Parents:
- 527b93f
- Location:
- phonelux-frontend/src/components/PhoneWithOffersComponent
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
phonelux-frontend/src/components/PhoneWithOffersComponent/PhoneWithOffersComponent.css
r527b93f re5b84dc 23 23 24 24 .phone-with-offers-table-row:nth-of-type(even){ 25 background-color: # DEE4E1;25 background-color: #eef2f0; 26 26 } 27 27 … … 51 51 font-size: 22px; 52 52 } 53 54 .phone-with-offers-model-header{ 55 border: 1px solid gray; 56 padding: 10px; 57 padding-left: 50px; 58 padding-right: 50px; 59 border-radius: 10px 60px; 60 box-shadow: inset 0px 0px 25px 0px rgb(120, 190, 139); 61 outline: none; 62 background-color: #c4f3d8; 63 } 64 65 .phone-with-offers-totaloffers-header{ 66 padding: 10px; 67 border: 1px solid rgb(199, 193, 193); 68 background-color: #B6E2C8; 69 border-radius: 50px; 70 } -
phonelux-frontend/src/components/PhoneWithOffersComponent/PhoneWithOffersComponent.js
r527b93f re5b84dc 31 31 <div className='phone-with-offers-sub-main'> 32 32 <div className='phone-with-offers-totaloffers-div'> 33 <h3 >Понуди: {this.props.total_offers}</h3>33 <h3 className='phone-with-offers-totaloffers-header'>Понуди: {this.props.total_offers}</h3> 34 34 </div> 35 35 … … 41 41 42 42 <div className='phone-with-offers-model-wrapper'> 43 <h1 >{this.props.model}</h1>43 <h1 className='phone-with-offers-model-header'>{this.props.model}</h1> 44 44 </div> 45 45 </div> … … 58 58 <tbody> 59 59 { 60 this.state.phone_offers.map((offer ) => <PhoneOfferComponent key={offer.offer_id} id={offer.id}60 this.state.phone_offers.map((offer,idx) => <PhoneOfferComponent key={idx} id={offer.id} 61 61 is_validated={offer.is_validated} offer_shop={offer.offer_shop} offer_name={offer.offer_name} 62 62 price={offer.price} offer_url={offer.offer_url}
Note:
See TracChangeset
for help on using the changeset viewer.