Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

appx modal layout fixes #782

Merged
merged 26 commits into from
May 29, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
bab1210
Fix duplication of path on icons
joel-44 Apr 29, 2020
2504568
Improve code comment
joel-44 Apr 29, 2020
83e2be1
Try to fix tests
joel-44 Apr 29, 2020
af46139
fix indention problems
joel-44 Apr 29, 2020
486078f
Use URL solution instead
joel-44 May 14, 2020
9cfd567
Merge pull request #732 from joel-44/master
JudahGabriel May 15, 2020
75dace4
Better handling of HTTP sites (#762)
JudahGabriel May 21, 2020
2a10066
[ImgBot] Optimize images (#688)
Druhin13 May 21, 2020
d11f497
Button fix (#772)
jgw96 May 26, 2020
5d3fe51
chore(deps): bump mixin-deep from 1.3.1 to 1.3.2
dependabot[bot] May 26, 2020
441b2f7
chore(deps): bump npm from 6.9.0 to 6.14.5
dependabot[bot] May 26, 2020
a8028a3
use small breakpoint
lee-leonardo May 28, 2020
e2592cc
remove set height for the gdpr notification on mobile breakpoints.
lee-leonardo May 28, 2020
2dc98ea
Merge pull request #773 from pwa-builder/dependabot/npm_and_yarn/mixi…
JudahGabriel May 28, 2020
7c5e148
Merge pull request #774 from pwa-builder/dependabot/npm_and_yarn/npm-…
JudahGabriel May 28, 2020
916ccd1
chore(deps): bump lodash.mergewith from 4.6.1 to 4.6.2
dependabot[bot] May 28, 2020
1d49170
chore(deps): bump lodash.merge from 4.6.1 to 4.6.2
dependabot[bot] May 28, 2020
a9946df
chore(deps): bump lodash.template from 4.4.0 to 4.5.0
dependabot[bot] May 28, 2020
65e8291
Merge pull request #777 from pwa-builder/dependabot/npm_and_yarn/loda…
JudahGabriel May 28, 2020
4a3f2c4
Merge pull request #778 from pwa-builder/dependabot/npm_and_yarn/loda…
JudahGabriel May 28, 2020
01e1a7a
chore(deps): bump lodash from 4.17.11 to 4.17.15
dependabot[bot] May 28, 2020
4841fd9
Merge pull request #779 from pwa-builder/dependabot/npm_and_yarn/loda…
JudahGabriel May 28, 2020
0d36fc6
Merge pull request #780 from pwa-builder/dependabot/npm_and_yarn/loda…
JudahGabriel May 28, 2020
99680ec
Merge pull request #776 from pwa-builder/issue755
JudahGabriel May 28, 2020
3909eed
something else was changed/fixed that caused the ems to break the pag…
lee-leonardo May 28, 2020
b4f3d94
Merge branch 'dev' into issue748
lee-leonardo May 28, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 10 additions & 6 deletions layouts/default.vue
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<div class="pure-u-1-2 pure-u-md-1-5">
</div>
<div class="pure-u-1-2 pure-u-md-1-5">

</div>
<div class="l-footer-social pure-u-1 pure-u-md-3-5">
<a class="l-footer-logo_action" href="https://github.com/pwa-builder" target="_blank">
Expand Down Expand Up @@ -173,24 +173,28 @@ header {
font-style: normal;
}
}

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this is from #776 my bad!

@media (max-width: 640px) {
height: auto;
}
}

/*body[data-location='gettingStarted']{

}

body[data-location='generate']{

}
body[data-location='serviceworker']{

}

body[data-location='publish']{

}

body[data-location='windows']{

}*/
</style>
Loading