All files / src getReset.js

75% Statements 3/4
0% Branches 0/1
0% Functions 0/1
75% Lines 3/4
1 2 3 4 5 6 7 8 9 101x   1x   1x          
const viewReset = `display:flex;align-self:stretch;flex-direction:column;flex-shrink:0;max-width:100%;box-sizing:border-box`
 
const textReset = `display:inline;`
 
const rootReset = `${viewReset};position:fixed;top:0;bottom:0;left:0;right:0`
 
export default function getReset(rootNode = 'body') {
  return `._elo_view {${viewReset}}._elo_text {${textReset}}${rootNode} {${rootReset}}`
}