Compare commits
2 Commits
705a1c4910
...
d1f3e0f514
| Author | SHA1 | Date | |
|---|---|---|---|
|
d1f3e0f514
|
|||
|
7ed1b207b4
|
@@ -10,18 +10,20 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
|
import "theme.css";
|
||||||
defineProps<{
|
defineProps<{
|
||||||
variant?: 'primary' | 'outline' | 'ghost' | 'danger'
|
variant?: "primary" | "outline" | "ghost" | "danger";
|
||||||
disabled?: boolean
|
disabled?: boolean;
|
||||||
}>()
|
}>();
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
@import 'tailwindcss';
|
@import "tailwindcss";
|
||||||
|
@import "../../theme.css";
|
||||||
.btn {
|
.btn {
|
||||||
@apply h-10 text-sm;
|
@apply h-10 text-sm;
|
||||||
padding: 0 1.5rem;
|
padding: 0 1.5rem;
|
||||||
font-family: 'Barlow', sans-serif;
|
font-family: "Barlow", sans-serif;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
letter-spacing: 0.06em;
|
letter-spacing: 0.06em;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
|
|||||||
@@ -1,4 +1,6 @@
|
|||||||
@import './font.css';
|
@import "tailwindcss";
|
||||||
|
|
||||||
|
@import "./font.css";
|
||||||
|
|
||||||
@theme {
|
@theme {
|
||||||
--color-black: #000;
|
--color-black: #000;
|
||||||
@@ -22,7 +24,7 @@
|
|||||||
--color-on-secondary: var(--color-white);
|
--color-on-secondary: var(--color-white);
|
||||||
--color-hover: var(--color-primary-dark);
|
--color-hover: var(--color-primary-dark);
|
||||||
|
|
||||||
--font-limelight: 'Open Sans';
|
--font-limelight: "Open Sans";
|
||||||
--default-font-family: var(--font-limelight);
|
--default-font-family: var(--font-limelight);
|
||||||
--breakpoint-3xl: 112rem;
|
--breakpoint-3xl: 112rem;
|
||||||
--breakpoint-4xl: 128rem;
|
--breakpoint-4xl: 128rem;
|
||||||
|
|||||||
Reference in New Issue
Block a user