24
1
Fork 0

a few font adjustments

This commit is contained in:
Danny Coates 2019-02-14 12:23:27 -08:00
parent 21e3095dc9
commit 6b6b04e93b
No known key found for this signature in database
GPG Key ID: 4C442633C62E00CB
3 changed files with 6 additions and 7 deletions

View File

@ -23,7 +23,6 @@ body {
.btn {
@apply bg-blue-dark;
@apply text-white;
@apply font-semibold;
@apply cursor-pointer;
@apply py-2;
@apply px-6;

View File

@ -160,7 +160,7 @@ module.exports = function(state, emit, archive) {
platform() !== 'android'
? html`
<button
class="text-blue-dark hover:text-blue-darker focus:text-blue-darker self-end font-medium flex items-center"
class="text-blue-dark hover:text-blue-darker focus:text-blue-darker self-end flex items-center"
onclick=${copy}
>
<img src="${assets.get('copy-16.svg')}" class="mr-2" />
@ -169,7 +169,7 @@ module.exports = function(state, emit, archive) {
`
: html`
<button
class="text-blue-dark hover:text-blue-darker focus:text-blue-darker self-end font-medium flex items-center"
class="text-blue-dark hover:text-blue-darker focus:text-blue-darker self-end flex items-center"
onclick=${share}
>
<img src="${assets.get('share-24.svg')}" class="mr-2" /> Share
@ -179,7 +179,7 @@ module.exports = function(state, emit, archive) {
platform() === 'web'
? html`
<a
class="flex items-baseline text-blue-dark hover:text-blue-darker focus:text-blue-darker font-medium"
class="flex items-baseline text-blue-dark hover:text-blue-darker focus:text-blue-darker"
href="${archive.url}"
>
<img src="${assets.get('dl.svg')}" class="mr-2" />
@ -310,7 +310,7 @@ module.exports.wip = function(state, emit) {
return html`
<input
type="image"
class="self-center text-white ml-4 delete"
class="self-center text-white ml-4 h-4"
alt="Delete"
src="${assets.get('close-16.svg')}"
onclick="${del}"

View File

@ -7,10 +7,10 @@ module.exports = function intro(state) {
class="flex flex-col items-center justify-center bg-white border border-grey-light md:border-none px-6 md:py-0 py-6 mb-0 h-full w-full"
>
<div class="flex flex-col justify-end h-full py-8">
<h1 class="font-bold leading-normal">
<h1 class="font-bold">
${state.translate('uploadPageHeader')}
</h1>
<p class="max-w-sm font-light leading-normal">
<p class="max-w-sm mt-2 font-light leading-normal">
${state.translate('uploadPageExplainer')}
</p>
<img class="-mb-12" src="${assets.get('intro.png')}" />