Skip to content

Commit

Permalink
commit test changes for strict mode
Browse files Browse the repository at this point in the history
  • Loading branch information
thescientist13 committed Jul 22, 2020
1 parent b22fe67 commit 494289f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions greenwood.config.js
@@ -1,5 +1,5 @@
const pluginGoogleAnalytics = require('@greenwood/plugin-google-analytics');
const pluginPolyfills = require('@greenwood/plugin-polyfills');
// const pluginPolyfills = require('@greenwood/plugin-polyfills');
const DESCRIPTION = 'Personal site and blog for Owen Buckley and The Greenhouse I/O. Ideas are built here.';
const FAVICON_HREF = '/assets/favicon.ico';
const TITLE = 'The Greenhouse I/O';
Expand Down Expand Up @@ -28,9 +28,9 @@ module.exports = {
plugins: [
...pluginGoogleAnalytics({
analyticsId: 'UA-147204327-1'
}),
})

...pluginPolyfills()
// ...pluginPolyfills()
]

};
18 changes: 9 additions & 9 deletions src/components/card/card.css
Expand Up @@ -47,32 +47,32 @@
}

@media (min-width: 300px) {
:host {
& .card-header-icon {
display: none;
:host .card {
& .wrapper {
border: none;
}

& .card {
border: none;
& .card-header-icon {
display: none;
}
}
}

@media (min-width: 700px) {
:host {
& .card {
:host .card {
& .wrapper {
border: 2px solid #020202;
}

& .card-header-icon {
display: inline;
grid-column: col-start / span 2;
grid-row: 1 / 6; /* autoprefixer: off */
grid-row: 1 / 6;
}

& .card-header {
grid-column: col-start 3 / span 10;
grid-row: 1 / 6; /* autoprefixer: off */
grid-row: 1 / 6;
}
}
}

0 comments on commit 494289f

Please sign in to comment.