File tree Expand file tree Collapse file tree 3 files changed +18
-1
lines changed
Expand file tree Collapse file tree 3 files changed +18
-1
lines changed Original file line number Diff line number Diff line change 5252.w-xs {
5353 width : var (--container-xs );
5454}
55+ .min-w-56 {
56+ min-width : calc (var (--spacing ) * 56 );
57+ }
5558.min-w-60 {
5659 min-width : calc (var (--spacing ) * 60 );
5760}
Original file line number Diff line number Diff line change @@ -27,7 +27,10 @@ function validate(data: Partial<typeof state>) {
2727 name =" password"
2828 label =" Password"
2929 >
30- <UInput v-model =" state.password" />
30+ <UInput
31+ v-model =" state.password"
32+ type =" password"
33+ />
3134 </UFormField >
3235 <UButton type =" submit" >
3336 Submit
Original file line number Diff line number Diff line change 1+ <script setup lang="ts">
2+ extendCompodiumMeta ({
3+ defaultProps: {
4+ defaultValue: 33
5+ }
6+ })
7+ </script >
8+
9+ <template >
10+ <USlider class =" min-w-56" />
11+ </template >
You can’t perform that action at this time.
0 commit comments