Mi estilo es ignorado

I can not apply my own style, when I’m using AppLayou, I ignore it.

@Route(value=“parametros”, layout = MainView.class)
@HtmlImport(“frontend://src/views/crud/list-preview.html”)

if it works when I remove the layout

@Route(value=“parametros”)
@HtmlImport(“frontend://src/views/crud/list-preview.html”)

How can i fix this?

//–

No puedo aplicar un estilo propio, cuando estoy usando AppLayou, lo iginora,

@Route(value=“parametros”, layout = MainView.class)
@HtmlImport(“frontend://src/views/crud/list-preview.html”)

si funciona cuando quito el layout

@Route(value=“parametros”)
@HtmlImport(“frontend://src/views/crud/list-preview.html”)

como puedo solucionar esto?

Hello Luis,

a better approach could be to include other styles inside your component template like this:

<link rel="import" href="../../styles/shared-styles.html">

<dom-module id="app-navigation">
  <template>
    <style include="shared-styles">
		....
	<style>
	....
	</template>
</dom-module>

You could have multiples styles define inside a html template(i.g. styles/shared-styles.html
) like this:

<!-- shared styles for all views -->
<dom-module id="shared-styles">
  <template>
    <style>
		....
	<style>
	....
	</template>
</dom-module>
<dom-module id="other-styles">
 
</dom-module>