Skip to content

Commit

Permalink
chore(playground): adjust attribute order
Browse files Browse the repository at this point in the history
  • Loading branch information
KazariEX committed Oct 10, 2024
1 parent 3f49775 commit 590e5fa
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions playground/app/app.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
<template>
<header
flex="~ items-center justify-between"
max-w="screen-lg"
m="x-auto y-4"
p="x-4"
max-w="screen-lg"
>
<hgroup flex="~ gap-2 items-center">
<h1 font="bold" text="5">Plain Shiki Playground</h1>
Expand All @@ -43,9 +43,9 @@
</nav>
</header>
<main
max-w="screen-lg"
m="x-auto"
p="x-4"
max-w="screen-lg"
>
<div b="1 solid gray op-40 rounded-md">
<div
Expand Down
2 changes: 1 addition & 1 deletion playground/app/components/plain-button.vue
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@

<style scoped>
.is-checked {
--uno: outline-primary outline outline-2 outline-offset--1;
--uno: outline outline-2 outline-primary outline-offset--1;
}
</style>
4 changes: 2 additions & 2 deletions playground/app/components/plain-select.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
<select-root v-model="modelValue">
<select-trigger
flex="inline items-center gap-1.5"
h="8"
w="45"
h="8"
outline="none"
bg="inherit"
font="mono"
Expand Down Expand Up @@ -62,6 +62,6 @@
}
.select-item[data-highlighted] {
--uno: outline-none text-primary bg-gray bg-op-30;
--uno: outline-none bg-gray bg-op-30 text-primary;
}
</style>

0 comments on commit 590e5fa

Please sign in to comment.