updated tailwindcss to 1.0

This commit is contained in:
Danny Coates 2019-06-14 11:30:43 -07:00
parent 6ef5b5133c
commit b9c87fd779
No known key found for this signature in database
GPG key ID: 4C442633C62E00CB
28 changed files with 698 additions and 1199 deletions

View file

@ -53,7 +53,7 @@ function body(main) {
const menu = html`<a
id="hamburger"
class="absolute pin-t pin-r z-50"
class="absolute top-0 right-0 z-50"
href="#"
onclick="${clickPreferences}"
>

View file

@ -42,11 +42,7 @@ module.exports = function(state, emit) {
content =
archives.length < 1
? intro(state)
: list(
archives,
'list-reset h-full overflow-y-auto w-full',
'mb-3 w-full'
);
: list(archives, 'h-full overflow-y-auto w-full', 'mb-3 w-full');
}
return html`
@ -57,7 +53,7 @@ module.exports = function(state, emit) {
>
${content}
</section>
<div class="fixed pin-r pin-b z-20">
<div class="fixed right-0 bottom-0 z-20">
${button}
<input
id="file-upload"