fix: css fixes

This commit is contained in:
David Ralph 2021-04-15 10:50:46 +01:00
parent 4feb4f79a9
commit 502f1683e2
4 changed files with 2 additions and 8 deletions

View File

@ -127,7 +127,6 @@ ul.sidebar {
svg {
vertical-align: middle;
font-size: 35px;
padding: 5px;
}
@ -282,7 +281,7 @@ li {
}
svg {
font-size: 1.4em !important;
font-size: 1.2em !important;
}
&:hover {

View File

@ -182,10 +182,6 @@ legend {
z-index: 999 !important;
}
li.stortableitem {
width: 200px;
}
.MuiTouchRipple-root {
background: transparent;
}

View File

@ -153,7 +153,6 @@ input[type=color]::-moz-color-swatch {
}
.sortableitem {
width: auto !important;
color: var(--modal-text) !important;
cursor: move;
}

View File

@ -49,7 +49,7 @@ export default class Changelog extends React.PureComponent {
<>
<h1 style={{ 'marginBottom': '-10px' }}>{this.state.title}</h1>
<h5 style={{ 'lineHeight': '0px' }}>{this.state.date}</h5>
{this.state.image ? <img draggable='false' src={this.state.image} alt='Update'></img> : null}
{this.state.image ? <img draggable='false' src={this.state.image} alt={window.language.modals.update.title}/> : null}
<p dangerouslySetInnerHTML={{ __html: this.state.html }}></p>
</>
);