diff --git a/css/index.css b/css/index.css index 4410c97..d8c3512 100644 --- a/css/index.css +++ b/css/index.css @@ -290,3 +290,7 @@ a[href].direct-link:focus:visited, :hover > a[href].direct-link:visited { color: #aaa; } + +.mrg-0 { + margin: 0 !important; +} diff --git a/posts/easy-web-components.md b/posts/easy-web-components.md index 8bb4236..262521b 100644 --- a/posts/easy-web-components.md +++ b/posts/easy-web-components.md @@ -38,7 +38,7 @@ Web components aim to be native, reusable blocks to build your application. They Let's see a **very** simple example of a component you may want to reuse in a lot of places. We will add a new tag `` that makes the contained text blink every second. This example can obviously be implemented with just CSS, but we will create a web component for the demo. This is how it looks:
-

I just created my awesome new web component!

+

I just created my awesome new web component!

Feel free to inspect this component with the dev-tools inspector.