finishing my update of the quicknote extension, to get it to use the WebExtensions Storage API.

This commit is contained in:
chrisdavidmills
2016-04-08 16:37:03 +01:00
parent 66d9a2fc82
commit 3975b1cb1b
4 changed files with 56 additions and 20 deletions

View File

@@ -4,24 +4,30 @@
box-sizing: border-box;
}
html,body {
margin: 0;
}
html {
font-family: sans-serif;
font-size: 10px;
background: white;
background: background: rgb(240,240,240);
height: 300px;
}
body {
width: 300px;
background: rgb(240,240,240);
border: 1px solid #ccc;
margin: 0 auto;
padding: 2px;
height: inherit;
}
.outer-wrapper {
overflow: auto;
width: 100%;
height: 300px;
background: rgb(240,240,240);
}
.clearfix {