fix: small modal and marketplace css fixes

This commit is contained in:
David Ralph
2021-05-24 11:43:38 +01:00
parent 4b57229396
commit c1ef3e3528
4 changed files with 7 additions and 2 deletions

View File

@@ -50,7 +50,7 @@ export default class Item extends React.PureComponent {
<br/>
{iconsrc ? <img alt='product' draggable='false' src={iconsrc} onClick={() => this.setState({ showLightbox: true })}/> : null}
<div className='informationContainer'>
<h1>{language.overview}</h1>
<h1 className='overview'>{language.overview}</h1>
<p className='description' dangerouslySetInnerHTML={{ __html: this.props.data.description }}></p>
<div className='productInformation'>
<ul>

View File

@@ -326,6 +326,7 @@ li {
::-webkit-scrollbar {
width: 6px;
height: 6px;
border-top-right-radius: map-get($modal, 'border-radius');
border-bottom-right-radius: map-get($modal, 'border-radius');
}

View File

@@ -211,3 +211,7 @@ p.description {
text-shadow: 0 0 20px rgb(0 0 0 / 30%);
}
}
.overview {
font-size: 30px !important;
}

View File

@@ -104,7 +104,7 @@ export default class TimeSettings extends React.PureComponent {
{timeSettings}
{this.state.timeType !== 'analogue' ?
<Slider title={window.language.modals.main.settings.sections.appearance.accessibility.widget_zoom} name='zoomClock' min='10' max='400' default='100' display='%' category='clock' element='.clock-container' />
: null }
: null}
<h3>{time.date.title}</h3>
<Switch name='date' text={this.language.enabled} category='date' element='.date'/>