We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d037705 commit f1271e3Copy full SHA for f1271e3
src/components/CustomProperties/CustomProperties.vue
@@ -12,8 +12,6 @@ import { computed } from 'vue';
12
import type { ColorScheme } from '@shopify/polaris-tokens';
13
import { DEFAULT_COLOR_SCHEME } from './utils';
14
15
-import '@shopify/polaris-tokens/scss/styles.scss';
16
-
17
interface CustomPropertiesProps {
18
/** Determines what color scheme is applied to child content. */
19
colorScheme?: ColorScheme;
@@ -33,3 +31,7 @@ const styles = computed(() => ({
33
31
...props.style,
34
32
}));
35
</script>
+
+<style lang="scss">
36
+@import '@shopify/polaris-tokens/scss/styles.scss';
37
+</style>
0 commit comments