Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b243b457 authored by AVINASH GUSAIN's avatar AVINASH GUSAIN
Browse files

mobile responsive fix

parent d0ae7f1a
Loading
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -38,7 +38,10 @@ function createImageElement(appName) {
 * @param appName
 */
function createTextNode(appName) {
	return document.createTextNode(t(appName, 'Please set your recovery email address to use your email account without restrictions.'))
	const p = document.createElement('p')
	const text = document.createTextNode(t(appName, 'Please set your recovery email address to use your email account without restrictions.'))
	p.appendChild(text)
	return p
}

/**