Padding on title + asset display spacing fixed + removed unused feather.js call in fullpage
This commit is contained in:
parent
33ed0e8f59
commit
954bc189d7
3 changed files with 7 additions and 8 deletions
|
@ -34,6 +34,10 @@
|
||||||
letter-spacing: 0;
|
letter-spacing: 0;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
line-height: 32px;
|
line-height: 32px;
|
||||||
|
|
||||||
|
@media (max-width: $break-point-tablet) {
|
||||||
|
padding: 0 20px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.asset-image, .asset-video {
|
.asset-image, .asset-video {
|
||||||
|
@ -52,10 +56,6 @@
|
||||||
padding: 6px;
|
padding: 6px;
|
||||||
}
|
}
|
||||||
|
|
||||||
// .vertical-split .asset-display {
|
|
||||||
// height: 90vh;
|
|
||||||
// }
|
|
||||||
|
|
||||||
.visible-content {
|
.visible-content {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
@ -137,6 +137,6 @@
|
||||||
border-top: 1px solid $grey-alt;
|
border-top: 1px solid $grey-alt;
|
||||||
padding-bottom: 80px;
|
padding-bottom: 80px;
|
||||||
@media (max-width: $break-point-tablet) {
|
@media (max-width: $break-point-tablet) {
|
||||||
padding: 0;
|
padding-bottom: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -116,7 +116,7 @@ p, body, button, input, textarea, label, select, option {
|
||||||
}
|
}
|
||||||
|
|
||||||
p, body, button, input, textarea, label, select, option {
|
p, body, button, input, textarea, label, select, option {
|
||||||
font-size: $text-small;
|
font-size: 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.text--extra-large {
|
.text--extra-large {
|
||||||
|
@ -146,7 +146,7 @@ p, body, button, input, textarea, label, select, option {
|
||||||
}
|
}
|
||||||
|
|
||||||
p, body, button, input, textarea, label, select, option {
|
p, body, button, input, textarea, label, select, option {
|
||||||
font-size: $text-x-small;
|
font-size: 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.text--extra-large {
|
.text--extra-large {
|
||||||
|
|
|
@ -23,7 +23,6 @@ module.exports = (helmet, html, preloadedState) => {
|
||||||
window.__PRELOADED_STATE__ = ${JSON.stringify(preloadedState).replace(/</g, '\\\u003c')}
|
window.__PRELOADED_STATE__ = ${JSON.stringify(preloadedState).replace(/</g, '\\\u003c')}
|
||||||
</script>
|
</script>
|
||||||
<script src="/bundle/bundle.js"></script>
|
<script src="/bundle/bundle.js"></script>
|
||||||
<script src="/assets/js/feather.min.js"></script>
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
`;
|
`;
|
||||||
|
|
Loading…
Reference in a new issue