Reputation: 7041
Currently I have this above my class:
@Import(stylesheet="context:/styles/stylesheet1.css")
But I need to import more styles for this page.
How can I import more than one stylesheet with @Import?
Upvotes: 1
Views: 1079
Reputation: 7041
Found the solution:
@Import(stylesheet = {"path-to-stylesheet","path-to-stylesheet"})
Upvotes: 4