You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
svelte/test/runtime/samples/inline-style-important/main.svelte

12 lines
218 B

<script>
export let color = `red`;
</script>
<p style="color: {color} !important; font-size: 20px !important; opacity: 1;">{color}</p>
<style>
p {
color: blue !important;
font-size: 10px !important;
}
</style>