fix css import
This commit is contained in:
@@ -10,18 +10,19 @@
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import "theme.css";
|
||||
defineProps<{
|
||||
variant?: 'primary' | 'outline' | 'ghost' | 'danger'
|
||||
disabled?: boolean
|
||||
}>()
|
||||
variant?: "primary" | "outline" | "ghost" | "danger";
|
||||
disabled?: boolean;
|
||||
}>();
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
@import 'tailwindcss';
|
||||
@import "tailwindcss";
|
||||
.btn {
|
||||
@apply h-10 text-sm;
|
||||
padding: 0 1.5rem;
|
||||
font-family: 'Barlow', sans-serif;
|
||||
font-family: "Barlow", sans-serif;
|
||||
font-weight: 700;
|
||||
letter-spacing: 0.06em;
|
||||
text-transform: uppercase;
|
||||
|
||||
Reference in New Issue
Block a user