File cleanup
This commit is contained in:
parent
86aaa72217
commit
87322c58f4
@ -103,15 +103,11 @@ module.exports = function(config) {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
// Watch sass
|
|
||||||
// config.addWatchTarget("./src/scss/");
|
|
||||||
|
|
||||||
return {
|
return {
|
||||||
dir: {
|
dir: {
|
||||||
input: 'src',
|
input: 'src',
|
||||||
output: 'dist'
|
output: 'dist'
|
||||||
},
|
},
|
||||||
passthroughFileCopy: true,
|
passthroughFileCopy: true,
|
||||||
// pathPrefix: '/preprod' //TODO remove when prod
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
/* Form */
|
|
||||||
|
|
||||||
.home .form-container {
|
.home .form-container {
|
||||||
svg > path:first-child {
|
svg > path:first-child {
|
||||||
fill: #f1f0f6;
|
fill: #f1f0f6;
|
||||||
@ -64,7 +62,6 @@ textarea {
|
|||||||
select {
|
select {
|
||||||
background-image: url("data:image/svg+xml,%3Csvg width='32' height='48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M23 32l-7.794-12h15.588L23 32z' fill='%23333'/%3E%3C/svg%3E");
|
background-image: url("data:image/svg+xml,%3Csvg width='32' height='48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M23 32l-7.794-12h15.588L23 32z' fill='%23333'/%3E%3C/svg%3E");
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
/* arrow icon position (1em from the right, 50% vertical) , then gradient position*/
|
|
||||||
background-position: right 1.5rem top 50%;
|
background-position: right 1.5rem top 50%;
|
||||||
background-size: 2rem 3rem;
|
background-size: 2rem 3rem;
|
||||||
-moz-appearance: none;
|
-moz-appearance: none;
|
||||||
@ -103,7 +100,6 @@ legend {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.field-list__field-group {
|
.field-list__field-group {
|
||||||
// margin-bottom: 2rem;
|
|
||||||
transition: transform 150ms;
|
transition: transform 150ms;
|
||||||
|
|
||||||
&__description {
|
&__description {
|
||||||
@ -125,10 +121,6 @@ legend {
|
|||||||
list-style: none;
|
list-style: none;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
|
||||||
label {
|
|
||||||
// font-weight: normal;
|
|
||||||
}
|
|
||||||
|
|
||||||
.field-list__field-group__description {
|
.field-list__field-group__description {
|
||||||
margin: 0 0 0 1.35rem;
|
margin: 0 0 0 1.35rem;
|
||||||
}
|
}
|
||||||
|
@ -25,6 +25,10 @@
|
|||||||
font-size: 2.5rem;
|
font-size: 2.5rem;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
|
|
||||||
|
&::after {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
&--compact {
|
&--compact {
|
||||||
max-width: 20ex;
|
max-width: 20ex;
|
||||||
}
|
}
|
||||||
|
@ -6,6 +6,10 @@
|
|||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
font-size: 2rem;
|
font-size: 2rem;
|
||||||
|
|
||||||
|
&::after {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.position {
|
.position {
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
.nav {
|
.nav {
|
||||||
&__list {
|
&__list {
|
||||||
overflow-x: auto;
|
overflow-x: auto;
|
||||||
|
|
||||||
// Add padding and neg margin to allow focus style visibility
|
|
||||||
padding: .5rem;
|
padding: .5rem;
|
||||||
margin: -.5rem;
|
margin: -.5rem;
|
||||||
-webkit-overflow-scrolling: touch;
|
-webkit-overflow-scrolling: touch;
|
||||||
|
@ -1,29 +0,0 @@
|
|||||||
.pagination {
|
|
||||||
flex-wrap: wrap;
|
|
||||||
|
|
||||||
a {
|
|
||||||
color: var(--color-theme-primary);
|
|
||||||
|
|
||||||
&:not(:hover) {
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Flip content if direction is backwards
|
|
||||||
&[data-direction='backwards'] {
|
|
||||||
flex-direction: row-reverse;
|
|
||||||
|
|
||||||
svg {
|
|
||||||
transform: rotate(-180deg);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// If only child and forwards, push out to the right
|
|
||||||
&[data-direction='forwards']:only-child {
|
|
||||||
margin-left: auto;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
svg {
|
|
||||||
pointer-events: none;
|
|
||||||
}
|
|
||||||
}
|
|
@ -73,8 +73,6 @@
|
|||||||
video {
|
video {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
max-width: map-get($metrics, 'wrap-max-width');
|
max-width: map-get($metrics, 'wrap-max-width');
|
||||||
// margin-left: 50%; /*changing this value to 47% removes the horizontal scrollbar once the viewport is < 930px */
|
|
||||||
// transform: translateX (-50%); /* changing this value to 49% allows for the suggestion above to also eliminate the horizontal scroll. */
|
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -30,6 +30,7 @@
|
|||||||
|
|
||||||
.footer-link {
|
.footer-link {
|
||||||
color: var(--color-white);
|
color: var(--color-white);
|
||||||
|
font-weight: 600;
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
@ -41,8 +42,4 @@
|
|||||||
outline-color: var(--color-white);
|
outline-color: var(--color-white);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&__credit {
|
|
||||||
// text-align: center;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
// Hide skip link visually by default
|
|
||||||
.skip-link:not(:focus) {
|
.skip-link:not(:focus) {
|
||||||
@extend %visually-hidden;
|
@extend %visually-hidden;
|
||||||
}
|
}
|
||||||
|
@ -16,7 +16,6 @@
|
|||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
// If it’s bleeding out in a post, it needs more padding
|
|
||||||
.post & {
|
.post & {
|
||||||
padding-top: 63%;
|
padding-top: 63%;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user