fix: welcome modal text and colour picker icon

This commit is contained in:
David Ralph 2021-03-21 13:19:24 +00:00
parent d99cc7869a
commit c6dd27180a
4 changed files with 8 additions and 6 deletions

View File

@ -93,11 +93,11 @@ input[type=color] {
border-radius: 100%;
height: 30px;
width: 30px;
box-shadow: map-get($main-parts, 'shadow');
border: none;
outline: none;
-webkit-appearance: none;
vertical-align: middle;
background: none;
&::-webkit-color-swatch-wrapper {
padding: 0;
@ -113,11 +113,11 @@ input[type=color]::-moz-color-swatch {
border-radius: 100%;
height: 30px;
width: 30px;
box-shadow: map-get($main-parts, 'shadow');
border: none;
outline: none;
-webkit-appearance: none;
-moz-appearance: none;
vertical-align: middle;
background: none;
&::-moz-color-swatch-wrapper {
padding: 0;

View File

@ -17,7 +17,7 @@ export default function WelcomeModal(props) {
<h1 className='welcometitle'>Mue Tab</h1>
<img alt='celebration' style={{ 'height': '200px', 'width': 'auto' }} draggable={false} src='./././icons/undraw_celebration.svg' />
<h2 className='subtitle'>{language.information}</h2>
<p>{language.thankyoumessage1},<br/> {language.thankyoumessage2}</p>
<p>{language.thankyoumessage1}<br/> {language.thankyoumessage2}</p>
<h2 className='subtitle'>{language.support}</h2>
<a href='mailto:hello@muetab.com' className='welcomeLink' target='_blank' rel='noopener noreferrer'><EmailIcon/></a>
<a href='https://twitter.com/getmue' className='welcomeLink' target='_blank' rel='noopener noreferrer'><TwitterIcon/></a>

View File

@ -9,7 +9,9 @@ import Photographer from '@material-ui/icons/Person';
export default function PhotoInformation(props) {
const language = window.language.widgets.background;
if (props.info.hidden === true) return null;
if (props.info.hidden === true) {
return null;
}
return (
<div className='photoInformation'>

View File

@ -244,7 +244,7 @@
"welcome": {
"title": "Welcome to",
"information": "Information",
"thankyoumessage1": "Thank you for downloading Mue Tab,",
"thankyoumessage1": "Thank you for installing Mue Tab,",
"thankyoumessage2": "we hope you enjoy your time with our extension.",
"support": "Support",
"close": "Close"